can figure out what’s wrong? always returns failure
function addItem() {
var rowCount = $('#grid').getGridParam('records');
var lastRow = $('#grid').getRowData(rowCount - 1);
var newRow = lastRow;
newRow.Id = "0";
newRow.Person = "";
newRow.Date = "";
var newItem = $('grid').addRowData(rowCount - 1, newRow);
if (newItem == true) {
alert('success');
}
else { alert('falire'); }
}
I don’t know, but perhaps this:
Should be this:
— edit:
And if this turns out to be the problem, I suggest you define the names of things at the top, like so:
Thus helping in these little mistakes of minor inconsistency 🙂