![]() |
Admin 6/5/2012 |
Regular expressions are not suited for such a task. Use custom validation routine instead. |
J
|
joiresende author 6/6/2012 |
Thanks for the reply. |
![]() |
Admin 6/7/2012 |
You need to use a custom validation plugin. In that plugin you can use any Javascript code. Checking if certain value if less or more than 100 is trivial in Javascript: if (someVal>100) |
J
|
joiresende author 6/7/2012 |
Please you have any examples for inspiration? |
C
|
cgphp 6/7/2012 |
function greater(sVal)
|
J
|
joiresende author 6/7/2012 |
thanks, worked perfectly |