I'm working with a grid and need to be able to mask one of the columns with the following format:
XXX-XXXXXX-XXXX-XXXX
An X can be either [0-9] or [A-Z]. Lowercase input could also be allowed, in which case it would be normalized to uppercase before being saved to the data store.
Is there any way to use the built-in masking for this? If not, how would I get started with rolling my own (i.e. what events do I hook when a character is entered, etc.)?
XXX-XXXXXX-XXXX-XXXX
An X can be either [0-9] or [A-Z]. Lowercase input could also be allowed, in which case it would be normalized to uppercase before being saved to the data store.
Is there any way to use the built-in masking for this? If not, how would I get started with rolling my own (i.e. what events do I hook when a character is entered, etc.)?