I'm building a SL4 app. Currently, my validation works for the following scenario:
- User focuses on the text box
- User types invalid data
- User loses focus on the text box
However, it does not work for this:
- User focuses on the text box, which already contains invalid data
- User loses focus on the text box
How can I get validation to trigger in that second case?
The reason I'm doing it is that I have a "Name" field that is initially empty but must be populated. If the user skips over it, I'd like to flag the error.