I want to ask about inline add row
we can activate inline cell editing by setting property “cellEdit: true”
then get all changed values using $(‘#grid’).getChangedCells(‘dirty’)
these are my code for inline add:
$(‘#grid’).addRowData(id, { id: “0” }, “first”);
$(‘#grid’).jqGrid(‘editRow’, id, {
keys: true,
url: “clientArray”
});
my question is:
– how can i get all new added row values ?
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top