Hi guys,
I am using jqx Grid with
editable: true,
selectionmode: 'multiplecellsadvanced',
I am using some columns validation as
cellsformat: 'd2',
columntype: 'numberinput'
validation: function (cell, value) {
if (value < 0) {
return { result: false, message: "You must enter positive value!" };
}
return true; }
}`
and everything works fine when you enter cell by cell, but if you paste values from excel (not all numbers) jqx grid will accept those values as regular and wont show any validation message.
am i doing something wrong?
thank you