ASPxClientValidationCompletedEventArgs.isValid Property
Gets a value specifying whether the validation has been completed successfully.
Declaration
isValid: boolean
Property Value
Type | Description |
---|---|
boolean |
|
Example
<script runat="server">
protected void ASPxGlobalEvents1_ValidationCompleted(object sender,
DevExpress.Web.ValidationCompletedEventArgs e) {
lErrorMessageNotEqual.ClientVisible = !tbPassword.Value.Equals(tbConfirmedPassword.Value);
}
</script>
...
<dxge:ASPxGlobalEvents id="ASPxGlobalEvents1" runat="server"
OnValidationCompleted="ASPxGlobalEvents1_ValidationCompleted">
<ClientSideEvents ValidationCompleted="OnValidationCompleted" />
</dxge:ASPxGlobalEvents>
...
See Also