jQuery UI Widgets Forums Grid deleterow returning true

This topic contains 3 replies, has 2 voices, and was last updated by  Dimitar 9 years, 3 months ago.

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
  • deleterow returning true #74101

    jahnvi25
    Participant

    i have deleterow function which i am calling on cellclick event as shown below
    $(“#jqxgrid”).on(‘cellclick’, function (event) {
    if(event.args.datafield === ‘del’){
    var table = $(“#jqxgrid”);
    var index = event.args.rowindex;
    var uid = table.jqxGrid(‘getrowid’, index);
    console.log(“uid :::” + uid + ” index :::” + index);
    var commit = table.jqxGrid(‘deleterow’, uid);
    console.log(commit);
    }
    });

    it does deletes the row form table.. but commit returns true.. any idea why ?
    also after this.. editing of cell stops working.. on the endcelledit(..) it does give me proper oldValue and newvalue (as entered) but cell does not take it. and on screen it still shows old value.

    deleterow returning true #74115

    Dimitar
    Participant

    Hello jahnvi25,

    deleterow returns true if the delete operation is successful.

    We confirm the other issue you reported and will try to fix it as soon as possible.

    Best Regards,
    Dimitar

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

    deleterow returning true #74130

    jahnvi25
    Participant

    below is the jsfiddle if that helps.

    http://jsfiddle.net/dS357/130/

    can you please let us know timeline on this one ? this issue came up in production..so.

    Thanks

    deleterow returning true #74164

    Dimitar
    Participant

    Hi jahnvi25,

    We hope the fix will be available in the next version of jQWidgets.

    Best Regards,
    Dimitar

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

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

You must be logged in to reply to this topic.