|
Title: How to end edit all row at once? Post by: aswzen on April 27, 2015, 11:34:25 PM How to end edit all row at once? for example 3 of my rows were edited and of course its editable, now i want to end all of it, how can i do that? should i loop for every rows?
Thank You in advance fiddle : http://jsfiddle.net/aswzen/2Leprrso/1/ Title: Re: How to end edit all row at once? Post by: jdx100424 on April 29, 2015, 02:16:24 AM var rows = $('#XX').datagrid('getRows');
for ( var i = 0; i < rows.length; i++) { $('#XX').datagrid('endEdit', i); } |