jQWidgets Forums

jQuery UI Widgets Forums Grid Add new row and set cursor in first column of new row

This topic contains 2 replies, has 1 voice, and was last updated by  MickaGau 11 years, 7 months ago.

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author

  • MickaGau
    Member

    Hello

    I created a button which add a new row in jqxgrid. This works fine.
    Now i would to select the first cell of the new row but i didn’t find how to know the new row index. I don’t use pager.

    Could you give some hint please?

    Thanks

    Mickael


    MickaGau
    Member

    Hello,
    finally i used following solution

    var rows = $(‘#jqxgridSC’).jqxGrid(‘getrows’);
    var columndatafield = $(“#jqxgridSC”).jqxGrid(‘getcolumnat’, 0).datafield;
    $(“#jqxgridSC”).jqxGrid(‘selectcell’, rows.length – 1, columndatafield);

    Let me know if there is a better solution

    Thank you


    MickaGau
    Member

    Better solution as it put the cell in edit mode, in the addrow method of the jqxgrid source

    addrow: function (rowid, rowdata, position, commit) {

    commit(true);
    var columndatafield = $(“#jqxgridSC”).jqxGrid(‘getcolumnat’, 0).datafield;
    $(“#jqxgridSC”).jqxGrid(‘begincelledit’, rowid, columndatafield);
    }

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

You must be logged in to reply to this topic.