Hi All. I’m using Suite 7.3 Pro. I have a problem.
I want add input mask decimal into dhtmlx grid when edit value like : 300,000,000.123 but it not support.
Any suggestions?
1 Like
I’m using event “beforeEditStart”
grid.events.on(“beforeEditStart”, function (row, col) {
setTimeout(function () {
$(".dhx_cell-editor__input").inputmask({ ‘alias’: ‘decimal’, ‘groupSeparator’: ‘,’, ‘digits’: 0, ‘autoGroup’: true, ‘autoUnmask’: true });
}, 100);
return true;
});
Please, try to use the afterEditStart instead of the beforeEditStart event.