Hello Katashov Dima,
For adding some custom parameters to the editor you can use the column ‘createeditor’ callback function. This function is called when the editor is created.
In this case you need to set the ‘groupSeparator’ property:
{
text: 'Quantity', datafield: 'quantity', width: 200, align: 'right', cellsalign: 'right', columntype: 'numberinput',
createeditor: function (row, cellvalue, editor) {
editor.jqxNumberInput({ decimalDigits: 2, digits: 7, groupSeparator: " ", inputMode: 'advanced' });
}
},
Best Regards,
Nadezhda
jQWidgets team
http://www.jqwidgets.com/