joolzhaines
Junior Member
Posts: 8
Registered: 8/17/2005
Member Is Offline
|
| posted on 10/3/2005 at 10:45 AM |
|
|
Custom Validation
Hi,
I am tring to wite a custom validation that will allow
Strings A-Za-z
Numbers 0-9
Spaces
This is what I have tried and does not work
'f' : /[a-zA-Z.-s.0-9]/
thanks for your help
Joolz
|
|
|
joolzhaines
Junior Member
Posts: 8
Registered: 8/17/2005
Member Is Offline
|
| posted on 10/5/2005 at 08:31 AM |
|
|
Validation
Found it myself anyway,
Here it is and it should be the default!
'alphanum':/^[\w\s]+$/
Hope it helps someone
Joolz
|
|
|