I need to check if the value of a custom numeric field has an integer value in a workflow validator.
tried:
Thanks
Dave
Assuming Hours Saved / Month (Monthly Tasks) is a normal text field the second one should return
if (cfvalues['Hours Saved / Month (Monthly Tasks)']?.isInteger()) { ... }
should work. If it doesn't, how doesn't it?
Amazing response as always Jamie! Might walk up to Old Street and buy you a beer or three.
Still not working. The field is numeric so I've tried check it both ways, just the test then with toString.
if (cfvalues['Hours Saved / Month (Monthly Tasks)']?.toString().isInteger()) { return true }
Part of frustration is that I don't have access to the log files so debugging isn't as easy as it could be.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just created a text custom field, same result, every combination fails.
if (cfvalues['Hours Saved / Ad Hoc']?.isInteger()) { return true }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.