jQWidgets Forums

jQuery UI Widgets Forums DataTable Delete method

This topic contains 3 replies, has 2 voices, and was last updated by  Peter Stoev 10 years, 5 months ago.

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
  • Delete method #60967

    hk
    Participant

    when using the below the datatable allows me to delete and shows the row deleted in the page
    deleterow: function (rowid, commit) {
    commit(true);
    },

    but when I try to add logic to update the database too it does not work
    deleterow: function (rowid, commit) {
    // synchronize with the server – send delete command
    var data = “delete=true&” + $.param({ CustomerID: rowid });
    $.ajax({
    dataType: ‘json’,
    url: ‘test_data.php’,
    cache: false,
    data: data,
    success: function (data, status, xhr) {
    // delete command is executed.
    commit(true);
    },
    error: function (jqXHR, textStatus, errorThrown) {
    commit(false);
    }
    });
    },

    what am I missing

    Delete method #60968

    hk
    Participant

    is there a way in datatable to get jqxGrid(‘getdatainformation’)

    Delete method #60969

    hk
    Participant

    I am calling $(“#table”).jqxDataTable(‘deleteRow’, rowIndex);

    but rowindex is not the same as customerid ??

    Delete method #60973

    Peter Stoev
    Keymaster

    Hi hk,

    Here’s how to call deleteRow – http://jsfiddle.net/jqwidgets/PtEwH/. The API which is available for jqxDataTable can be found on this page: http://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxdatatable/jquery-datatable-api.htm

    Best Regards,
    Peter Stoev

    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.