cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X

How can i add a Validation Expression in an editable Grid?

mazri
2-Guest

How can i add a Validation Expression in an editable Grid?

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!

1 ACCEPTED SOLUTION

Accepted Solutions

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 !

View solution in original post

4 REPLIES 4
PaiChung
22-Sapphire I
(To:mazri)

What does your regular expression look like and how are you binding your values to the widget?

                                   

PaiChung
22-Sapphire I
(To:mazri)

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 !

Top Tags