Hi All, I have a problem with a jqxGrid editable with a column jqxNumberInput type.
I defined my column in this way:
{text: 'Prezzo Un.', datafield: 'prezzo_un', width: 100, align: 'right', cellsalign: 'right', columntype: 'numberinput',
createeditor: function (row, cellvalue, editor) {
editor.jqxNumberInput({ spinButtonsStep:0, promptChar:" ", spinButtons: false, spinMode: 'simple', groupSeparator: ".", decimalSeparator: ",", decimalDigits:2, })
}
},
the problem is that when I insert a value in my column at the end, when I jump to the next column, my column lose the format.
So, new row and the column show my 0,00 …I insert a value and after I see 1234.25
I hope to be clear my explanation.
bye
Ale