diff options
author | ctrlaltca@gmail.com <> | 2012-01-18 09:35:07 +0000 |
---|---|---|
committer | ctrlaltca@gmail.com <> | 2012-01-18 09:35:07 +0000 |
commit | a26837b0990f65b7091263026296d2aff68d9838 (patch) | |
tree | 3eea57ec60f9c7136a42183e1f6d057a0a1bc997 /tests/FunctionalTests/validators/protected/pages/DatePicker.page | |
parent | e3e61542d5a5292b12c987998326f686a5e11d81 (diff) |
fixed #380 (TCustomValidator's ControlToValidate should be optional); added a quickstart example, updated 2 tests that were broken + HISTORY
Diffstat (limited to 'tests/FunctionalTests/validators/protected/pages/DatePicker.page')
-rw-r--r-- | tests/FunctionalTests/validators/protected/pages/DatePicker.page | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/FunctionalTests/validators/protected/pages/DatePicker.page b/tests/FunctionalTests/validators/protected/pages/DatePicker.page index fdbbbeb1..7dfd2788 100644 --- a/tests/FunctionalTests/validators/protected/pages/DatePicker.page +++ b/tests/FunctionalTests/validators/protected/pages/DatePicker.page @@ -10,8 +10,8 @@ ControlToValidate="picker1"
DataType="Date"
DateFormat="d/M/yyyy"
- ErrorMessage="Please enter a date greater than 17/4/2007"
- MinValue="17/4/2007" />
+ ErrorMessage="Please enter a date greater than 17/4/2013"
+ MinValue="17/4/2013" />
<hr />
<com:TDatePicker ID="picker2" DateFormat="d/M/yyyy" InputMode="DropDownList" />
@@ -21,9 +21,9 @@ ControlToValidate="picker2"
DataType="Date"
DateFormat="d/M/yyyy"
- ErrorMessage="Please enter a date between 9/9/2006 and 8/10/2006"
- MinValue="9/9/2006"
- MaxValue="8/10/2006" />
+ ErrorMessage="Please enter a date between 9/9/2012 and 8/10/2012"
+ MinValue="9/9/2012"
+ MaxValue="8/10/2012" />
<hr />
Date 1:
|