Having a textitem with the required mask as the editor type works only when the grid is edited. Is there a way to show the value formatted with the mask by default (like in the form)?
Currently, I have to use cellFormatter to format the value of the cell.
Is there ability to use mask with regular expression, my case is to define a mask for TextItem where value should be double value that might end with percentage symbol, so the textItem should accept the following scenarios:
1- 1
2- 11
3- 111 and so on
4- 1.
5- 1.1111
6- 1.11111 and so on
7- All above cases with % symbol
Comment