Hello,
In IE7 I have a problem to edit cell with jqxNumberInput. I recieve an error:
SCRIPT5007: Unable to get value of the property ‘toString’: object is null or undefined
jqxnumberinput.js, line 7 character 21876
My code:
$("#jqxgrid").jqxGrid({
width : 540,
source : dataAdapter,
pageable : true,
autoheight : true,
editable : true,
selectionmode : 'singlecell',
pagesize : 5,
pagesizeoptions : ['5', '10'],
columns: [{
text : 'Date to',
datafield : 'dateTo',
width : 110,
columntype : 'datetimeinput'
}, {
text : 'Text 0',
datafield : 'txt',
width : 120,
cellsalign : 'right'
}, {
text : 'Text 1',
datafield : 'txt1',
width : 140,
cellsalign : 'right'
}, {
text : 'Price',
datafield : 'Price',
width : 170,
cellsalign : 'right',
cellsformat : 'd2',
columntype : 'numberinput',
initeditor : function (row, cellvalue, editor) {
editor.jqxNumberInput({
decimalDigits : 2,
digits : 15,
spinButtons : false
});
}
}]
});
Thank you for help!