Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
20
igGrid multiple row edit
posted

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 ?

Parents
  • 2151
    Offline posted

    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 Kolev
    Senior Software Developer

Reply Children