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
140
What the event will raise to notify is dirty on grid?
posted

I have a button Save(disabled) and a iggrid

What the event will I catch to enable button Save when I have any modifies on grid like delete, add new or edit cell

Parents
No Data
Reply
  • 2155
    Offline posted

    Hello Quan,

    I suggest you use ui.igGridUpdating's editCellEnding event to know when a cell is edited or added, and rowDeleting event when a row is deleted.


     $("#grid1").igGrid(
      {
    .....
       features:[
        {
         name:"Updating",
         editMode:"cell",
         rowDeleting: function(evt, ui){
          //enable the save button
         },
         editCellEnding: function(evt, ui){
          if(ui.update)
          {
           //enable the save button
          }
         }
        }
       ]
      }
        );

    I have attached the sample to demonstrate the above.


    The following is the API reference of these events;

    editCellEnding event
    http://igniteui.com/help/api/2016.2/ui.iggridupdating#events:editCellEnding

    rowDeleting event
    http://igniteui.com/help/api/2016.2/ui.iggridupdating#events:rowDeleting


    Let me know if I may be of further assistance.

    Thank you,
    Mihoko Kamiishi

    CASE-180746_.zip
Children
No Data