Hi,
When a user selects a row in igGrid, I open up a dialog box with fields that the user can edit. When the dialog box closes, I want to be able to to update the corresponding row (cells) in igGrid.
Calling this method does not seem to be doing anything:
$('#grid1').igGridUpdating('updateRow', 1, { 'Name': 'Alex' });
'#grid1'
'updateRow'
'Name'
'Alex'
I tried different features settings when creating the grid, but still no luck. Can you point me in the right direction? I also need to be able to add a new row, bypassing the built-in inline editor (again, using my own UI).
Thanks,
Daniel
Does anyone have an idea? Thanks.
is autoCommit set to true in your case? (that's part of the grid options).
Angel