Single line text editor which can limit input character by specifying input Mask.
When setting column editor, it will specify type as "mask".
grid.setColumns([{
fieldName: "fld0",
editor: {
type: "mask",
mask: 'LLL-000'
},
...
},
...
];
// You can also directly specify in column level.
column.setEditor({
type: "mask",
mask: '0000/00/00'
});