jQWidgets Forums

jQuery UI Widgets Forums Grid Edited records list

This topic contains 3 replies, has 3 voices, and was last updated by  himaja 12 years, 8 months ago.

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
  • Edited records list #8234

    himaja
    Member

    Hi,

    Is there any event that gives the complete list of edited records in grid.

    For example: user does an inline edit/ Add/ Delete of the information in the grid of more than one row and clicks on save. Is there any event that gives the list of only modified records?

    Please help in answering above query.

    Thanks

    Edited records list #8236

    Dimitar
    Participant

    Hello himaja,

    There is no such event in jqxGrid. However, please check out the demo Create, Remove, Update. There, you can see the methods which create / remove / update the rows. You can further add your own functionality so that when a row is updated, for example, it is also logged on a list / array.

    Best Regards,
    Dimitar

    jQWidgets team
    http://www.jqwidgets.com/

    Edited records list #8237

    Jinay Mehta
    Member

    Hi himaja,
    You can do it manually using getrowid attribute of jqxGrid.

    var rowid = $(“#jqxgrid”).jqxGrid(‘getrowid’, rowindex);

    You can get this ids which are edited, deleted means changed.
    Store all the row ids in one array variable and display them or use them where you want.

    Regards,
    Jinay Mehta

    Edited records list #8238

    himaja
    Member

    Thanks for the response. Have implemented manually, just wanted to check if there is any out of box.

Viewing 4 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic.