Is there a way to trigger a validator in JavaScript to display an error message?
For instance:
Let's say I have a text box for inputting time and a button to submit the value.
I need to ensure that the time entered is within a certain range, so I am using JavaScript to validate the input and currently displaying an alert if there is an error.
Instead of using the alert, I would like to utilize the validation callout extender to show the error message. Is this possible?