Hi Jessie.
Thank your for your help and going through the effort of providing an example. My apologies for not being more specific in my original question but I'm not sure how to apply your example in my case.
Data validation is done using the properties
Error and
this and their respective "getters". If, for instance, the user now enters something in the name field of my form, I want to ask the database if that name is already taken. In case of a duplicate I want to give the user immediate feedback, same as with other invalid input. This request is not likely to take a lot of time. But making async calls from a "getter", even if possible, is probably not going to work well.
So my approach now would be to handle this outside SfTextBoxExt validation using the
LostFocus event. That basically creates a second validation structure and feels a bit redundant. Is there another way?
Thanks and regards,
-Juergen