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
420
passing igGriod updated row to server side
posted

I have updated a row and need to pass the row value to server side for save.

This is an igGrid without MVC.

Parents
  • 49378
    posted

    Hi vnt_prabhu,

    Thank you for posting in the community.

    A possible approach would be to save the changes from the editRowEnded handler of igGrid. 

    Code Snippet
    1. features: [
    2. {
    3.     name: 'Updating',
    4.     editMode: 'row',
    5.     editRowEnded: function (evt, ui) {
    6.  
    7.         $('#grid1').igGrid('saveChanges');
    8.  
    9.     }
    10. }
    11.     ]

    Please feel free to contact me if you have any questions.

Reply Children