What would be the best way to handle format validation of a text field in a grid. I have grid that is set to row edit. Some of the columns are drops downs and some are free text. In one of the columns i have to validate that the input is matches the format, YYMMDD-123456, Two digit year first, two digit month, two digit day,hypen and then 6 numbers after.
Hello,
You can use the validatorOptions of editorOptions and specify a custom validation.
Custom validation is a function, which returns the value and you can test it against the conditions you want.
I'm attaching a sample. Please review it and let me know if you have more questions on this.