How about if I paste 2 rows into a grid with 1 row?
It would be great that more rows appear as I past it from excel.
I notice that
$("#myExcel").on('cellendedit', function (event)
console.log(event.args.rowindex);
show 0 on 1st row
show -1 on 2nd row,
There’s anyway to extend the size of the grid on paste?
My humble solution
if(rowBoundIndex === -1 && dataField==="tipo"){
console.log("ADD row");
console.log(rowData);
$("#myExcel").jqxGrid('addrow', null, {tipo: value});
}