How to avoid entering particular value in editTextCell- column- Celltable?
Is there any event in editTextCell?
Validation while entering values in cells of celltable
In case of
String :Dont enter spaces in cell
Integer : Dont use characters
- avoiding spaces in cell i.e if cell is type of string then user can't use spaces for although user presses "space bar" button multiple times then that spaces should not be enter in cell a How to achieve this ?
Any help or guidance in this matter would be appreciated.
If you want a specific behavior in a Cell, then you have a to make a Cell with that behavior built in.
You could start with an
EditTextCellif that's what you want, and then extend it and override its onBrowserEvent to cancel key events for spaces when in edit mode, or something like that.