KaxTabControlCausesValidation Property |
Gets or sets a value indicating whether validation is performed when a tab within
the KaxTabControl control is selected.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic override bool CausesValidation { get; set; }
Public Overrides Property CausesValidation As Boolean
Get
Set
public:
virtual property bool CausesValidation {
bool get () override;
void set (bool value) override;
}
abstract CausesValidation : bool with get, set
override CausesValidation : bool with get, set
Property Value
Type:
Booleantrue if validation is performed when a tab is selected;
otherwise,
false. The default value is
true.
RemarksBy default, page validation is performed when a tab is selected. Page
validation determines whether the input controls associated with a validation
control on the page all pass the validation rules specified by the validation
control. You can specify or determine whether validation is performed on both the
client and the server when a tab is clicked by using the CausesValidation
property. To prevent validation from being performed, set the
CausesValidation property to false.
See Also