I'm adding new rows to the grid, but need to make certain non-editable columns editable in order to populate w/data, then set these columns back to non-editable.
Here's my JS to add the data/rows. How can I make the columns editable, add the data, then make then non-editable again.
var newRowList = [];
for (i = 0; i < rpmData.length; i++) {
newRowList.push({ newRow: rpmData });
}
$gridMain.pqGrid("addRow", { rowList: newRowList });