jQWidgets Forums

jQuery UI Widgets Forums Grid Retrieve data in Grid Cell Edit

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

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • Retrieve data in Grid Cell Edit #72785

    ysut
    Participant

    Hi all,

    How to retrieve data from database in grid, without post back and put the results to other cell, when user change the cell value?
    I need to put productname and price into other cells, when user edit in productcode column

    Thanks in advance
    YSut

    Retrieve data in Grid Cell Edit #72806

    Dimitar
    Participant

    Hi YSut,

    In the cellendedit event, which is fired when a cell’s edit operation has ended, you can get the new value of the cell, among other information:

    $("#jqxGrid").on('cellendedit', function (event) 
    {
        // event arguments.
        var args = event.args;
        // column data field.
        var dataField = event.args.datafield;
        // row's bound index.
        var rowBoundIndex = event.args.rowindex;
        // cell value
        var value = args.value;
        // cell old value.
        var oldvalue = args.oldvalue;
        // row's data.
        var rowData = args.row;
    });

    Best Regards,
    Dimitar

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

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

You must be logged in to reply to this topic.