Changes between Initial Version and Version 2 of Ticket #13673
- Timestamp:
- Aug 11, 2011, 11:02:22 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #13673
-
Property
Milestone
changed from
tbd
tofuture
-
Property
Milestone
changed from
-
Ticket #13673 – Description
initial v2 1 In a lot of cases, you might want to validate a textbox against a datastore or some sort of backend, eg to make sure a username isn't taken. Currently ValidationTextBox only supports synchronous validation, which limits what you can do.1 In a lot of cases, you might want to validate a textbox against a datastore or some sort of backend, eg to make sure a username isn't taken. Currently !ValidationTextBox only supports synchronous validation, which limits what you can do. 2 2 3 3 The only problem with implementing this sort of thing is that validation when submitting a form can't be done asynchronously, but I think in most cases, the async validation call will be fast enough that the validation can be done before the user has the chance to submit the form (or even have an argument specifically for doing synchronously). Another option is to just assume the field is invalid internally until the async validation has finished.