Click or drag to resize
KaxToolBarCausesValidation Property
Gets or sets a value indicating whether validation is performed when a button item within the KaxToolBar control is clicked.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public override bool CausesValidation { get; set; }

Property Value

Type: Boolean
true if validation is performed when a button item is clicked; otherwise, false. The default value is true.
Remarks

By default, page validation is performed when a button item is clicked. 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