jQWidgets Forums

jQuery UI Widgets Forums Grid JQXGrid with Fiter and Paging Get RowIndex

This topic contains 1 reply, has 1 voice, and was last updated by  panky 10 years, 11 months ago.

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

  • panky
    Participant

    Hi

    I have “http://jsfiddle.net/J8LRv/”

    It has 500 records, filter records by first name.

    Select 3rd row and click on “Get row bound index” button, you will always get 0.

    In this example I want to get current row index.

    Thanks
    Panky


    panky
    Participant

    Ohhh I have to do below to get current rowIndex

    I am doing this in cellclick event of grid cell
    function RowEdit(event) {
    if (event.args.columnindex == 0) {
    var dataRecord = jqxgFabric.jqxGrid(‘getrowdata’, event.args.rowindex);
    var gridData = jqxg.jqxGrid(‘getdisplayrows’);

    Enumerable.From(gridData).ForEach(function(d) {
    if (d.DetailID == dataRecord.DetailID) {
    $(‘#txtCurrentIndex’).val(d.boundindex);
    }
    });
    }
    }

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

You must be logged in to reply to this topic.