diff options
author | xue <> | 2006-02-06 17:01:15 +0000 |
---|---|---|
committer | xue <> | 2006-02-06 17:01:15 +0000 |
commit | 0cba2b20bb89e2be8728edb25e6a68a764d35c19 (patch) | |
tree | 261335bfb9ba9726b0bfe82316f9cd17372a984e /demos/quickstart/protected/pages/Controls/Samples/TCustomValidator | |
parent | 750ab8b5a8814295a4774612cc4f9c727d316fe3 (diff) |
Fixed a bug in TDataGrid about columnspan of pager cell.
Diffstat (limited to 'demos/quickstart/protected/pages/Controls/Samples/TCustomValidator')
-rw-r--r-- | demos/quickstart/protected/pages/Controls/Samples/TCustomValidator/Home.page | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/demos/quickstart/protected/pages/Controls/Samples/TCustomValidator/Home.page b/demos/quickstart/protected/pages/Controls/Samples/TCustomValidator/Home.page index 840a6550..33d92985 100644 --- a/demos/quickstart/protected/pages/Controls/Samples/TCustomValidator/Home.page +++ b/demos/quickstart/protected/pages/Controls/Samples/TCustomValidator/Home.page @@ -24,7 +24,7 @@ Custom validator with default settings: ValidationGroup="Group1"
ControlToValidate="TextBox1"
ClientValidationFunction="myValidationFunction"
- ServerValidate="serverValidate"
+ OnServerValidate="serverValidate"
Text="You must enter 'test'." />
<com:TButton Text="Submit" ValidationGroup="Group1" />
</td>
@@ -41,7 +41,7 @@ Custom validator with client-side validation disabled: EnableClientScript="false"
ControlToValidate="TextBox2"
ClientValidationFunction="myValidationFunction"
- ServerValidate="serverValidate"
+ OnServerValidate="serverValidate"
Text="You must enter 'test'." />
<com:TButton Text="Submit" ValidationGroup="Group2" />
</td>
@@ -57,7 +57,7 @@ Custom validator with focus-on-error enabled and dynamic display: ValidationGroup="Group3"
ControlToValidate="TextBox3"
ClientValidationFunction="myValidationFunction"
- ServerValidate="serverValidate"
+ OnServerValidate="serverValidate"
FocusOnError="true"
Text="You must enter 'test'." />
<com:TButton Text="Submit" ValidationGroup="Group3" />
|