Hi guys,
I’m using a single-page platform for my CRM-style software and want to detect when a user has entered an invalid URL because my elements use the URL to populate their displays.
I have achived the desired result by using an ‘On page load’ workflow to check the path against an option set, but the thing I’m yet to work out is how to check that a value is numerical.
For example:
URL/page?year=2024&week=20
How can I detect if a user has edited the URL to “week=hello” or similar?
Entering every possible integer in an option set is impractical, so I just need to know whether the value is numerical or not.