Hi Team,
Validation should be triggered if the user enters two consecutive dots in the text field. How can we handle this?
Discussion posts and replies are publicly visible
The validation should throw an error when the user enters something like "3.6.5" as an example. how can we achive this?
I assume any 2 dots should trigger an error, not necessarily 'consecutive' as mentioned in the first post?
a!localVariables( local!data: {"12345","123.45","123..45","1.2.345",null,""}, a!forEach( items: local!data, expression: todecimal(fv!item)=fv!item ) )