It is working. but in the application, with the below condition.(added for editable )
title: "Back Details", halign: "center", colModel: [
{
title: "Name (Based on Pressure)", dataIndx: "back_name", dataType: "string", align: "left", halign: "center", width: 350,
editable: function (ui) {
return (ui.rowData.ahead_back_same == "no");
},
when date is pasted,(rows more than existing rows in the grid ). getting error.
for ex: if i 10 records in the grid, and , if i paste 20 records from 5th position, it loops upto tenth row. after that getting error.
If i put simply false for the condition return (ui.rowData.ahead_back_same == "no");, loosing the editable option. but able to copy. all the 20 records.