ASP.net
Awesome
Learn
Forum
Buy
Demos
Sign In
☾
☀
Switch to
Dark
Light
Mode
this site works best with javascript enabled
Ask Question
Grid inline editing Save All button
Title:
B
I
{code}
?
I am using the Grid with inline editing. I need a way to be able to Save multiple rows at once. For example, if rows 1-5 are in "Edit" mode I could click "Save All" and it would save these edits to the database without the user having to click save 5 times. Thanks.
Save Changes
Cancel
eliawesome
asked at 05 Nov 2018
Answers
B
I
{code}
?
you could call api.inlineSave on all rows in edit mode: var grid = $('#DinnersInlineCrudGrid'); var rows = grid.find('.o-glrow'); rows.each(function(i, row){ grid.data('api').inlineSave($(row)); });
Save Changes
Cancel
Omu
answered at 05 Nov 2018
please
Sign In
to leave an answer
By accessing this site, you agree to store cookies on your device and disclose information in accordance with our
cookie policy
and
privacy policy
.
OK