Click or drag to resize
KaxInputControlCausesValidation Property
Gets or sets a value indicating whether validation is performed when the KaxInput control is set to validate when a postback occurs.

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

Property Value

Type: Boolean
true if validation is performed when the KaxInput control is set to validate when a postback occurs; otherwise, false. The default value is false.
Remarks

Use the CausesValidation property to determine whether validation is performed on both the client and the server when a KaxInput control is set to validate when a postback occurs. 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.

By default, a KaxInput control does not cause page validation when the control loses focus. To set the KaxInput control to validate when a postback occurs, set the CausesValidation property to true and the AutoPostBack property to true.

When the value of the CausesValidation property is set to true, you can also use the ValidationGroup property to specify the name of the validation group for which the KaxInput control causes validation.

This property cannot be set by themes or style sheet themes.

See Also