vote up 0 vote down star

When the user leaves a textbox control I want to trim any spaces and immediately update the display with the tidied string.

Should this be done in the Leave, Validating or Validated event?

Thanks

Clarence

flag

3 Answers

vote up 0 vote down

onBlur = when the user leaves.

But the user could also submit the form without leaving the tb, e.g., by hitting the enter key. So you may also want to listen for that.

link|flag
This is tagged as windows forms – hypoxide May 5 at 16:59
vote up 0 vote down

The Leave event would be best suited, as it occurs when the focus has left the textbox.

link|flag
vote up 1 vote down

I would use leave if you simply want to trim the string. Validating is useful if you want to cancel the leave (from tab, enter click etc) and keep the textbox selected.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.