HI team,
I am adding the new row dynamically with some data in the cell for the pop-up grid. But it is adding the empty row with no data are added. This was working fine with the param query javascript version 2.2. Now I replaced the with new version to 2.3 js file.
This problem i was facing .Please help me out to resolve this issue.
Here is my sample code what i am doing.
for (var i = 0; i < cutType.length; i++) {
if (cutType == "J") {
cutType = "Joining";
}
else if (cutType == "L") {
cutType = "Leaving";
}
var rowData = {
vslId : cutvslId,
pvslName : cutVessel,
peventType : cutType,
};
$("#popup_grid").pqGrid("addRow", {
rowData : rowData
});
$("#popup_grid").pqGrid("refreshRow", {
rowIndx : i
});
}
Thanks in Advance
Bsol Team