Hi,
Can you please help on how we can edit multiple/all rows inside a grid and save all at once, maybe using checkbox selection or using some button ?
Hello Vishal,
If you need to programmatically update a lot of rows in the igGrid control you may use the "updateRow" method like this:
$('#grid').igGridUpdating("updateRow", 1, { Column1: 'Value1', Column2: "Value2" });
Also if the automatic commit is not enabled on your igGrid you may commit all your transactions at once like this:
$('#grid').igGrid("commit");
You can find more information in this topic:
https://www.igniteui.com/help/iggrid-updating
Let me know if I may be of any further assistance.
Sincerely,Radko KolevSenior Software Developer
Hi Radko,
Thank you for your response.I am aware of mentioned method to programmatically update rows. My requirement is a bit different here. Let me rephrase my query- i need to make all the rows inside grid editable at once for the user and then user should be able to make whatever changes required and save all at once using some button or any other trigger. Can you please help on this.