Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! X
Hi, I'm trying to add a verification expression in an editable grid, but it seems that this is not working very well since it is always showing an error even though my entry respects the regular expression that i defined.
Someone could help?
Thanks!
Solved! Go to Solution.
Oh actually i managed to find the solution , thanks to your answer i tryied this : /^[A-Z][a-zA-Z0-9_]{0,30}$/.test([Name]) and it works
before i was trying this: /^[A-Z][a-zA-Z0-9_]{0,30}$/.test(Name) but it doesn't work.
Thanks !
What does your regular expression look like and how are you binding your values to the widget?
I don't think it will be able to use that.
It needs a javascript comparison statement .. like [fieldname] > 30 not even sure if it can do isString or anything like that.
Oh actually i managed to find the solution , thanks to your answer i tryied this : /^[A-Z][a-zA-Z0-9_]{0,30}$/.test([Name]) and it works
before i was trying this: /^[A-Z][a-zA-Z0-9_]{0,30}$/.test(Name) but it doesn't work.
Thanks !