- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2023 09:58 AM
Hello experts,
Seems like the OOTB Number validation is not working at the service portal (number is not recognized as number).
I'm using standart variable field single line text (mandatory) and the OOTB Number validation regex.
is this a known issue?
Thanks,
Tomer
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2023 10:12 AM - edited 11-28-2023 10:12 AM
Hello @tpeleg
Modify your regular expression to this :-
^[0-9]+$
Plz mark my solution as Accept, If you find it helpful.
Regards,
Samaksh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2023 10:12 AM - edited 11-28-2023 10:12 AM
Hello @tpeleg
Modify your regular expression to this :-
^[0-9]+$
Plz mark my solution as Accept, If you find it helpful.
Regards,
Samaksh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2023 11:02 PM
Thank you @Samaksh Wani - works now as excpected!