jQWidgets Forums

Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts

  • thadus
    Member

    I had the same problem here. I spend a lot of hours to fix it, but I got it! I had 2 calls of jQuery: one in the main file, with 1.9.1 version and another in my grid file, with 1.10.2 version. After removing the call of 1.9.1 version, I solved the problem. Check your jQuery calls and try again.

    in reply to: Problem with date format Problem with date format #31256

    thadus
    Member

    Another thing: I’m sending data by Ajax, with the updaterow method.

    $("#jqxgrid").on('cellendedit', function (event) {
    var args = event.args;
    $(this).jqxGrid('updaterow', args.rowindex);
    });
    updaterow: function (rowid, rowdata, commit) {
    // synchronize with the server - send update command
    $.ajax({
    url: 'inc/operacional/viagens_jd_ajax',
    data: {
    (...)
    inicioconsolidacao: rowdata.inicioconsolidacao
    (...)
    },
    success: function (data, status, xhr) {
    // update command is executed.
    commit(true);
    },
    error: function () {
    // cancel changes.
    commit(false);
    }
    });
Viewing 2 posts - 1 through 2 (of 2 total)