dpugh

Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Author
    Replies
  • in reply to: Frozen columns and column re-ordering (sortable) #99269
    dpugh
    Participant

    Ok, thanks for the reply Tony.

    I can see it's difficult.

    in reply to: Cannot call method ‘indexOf’ of undefined #98967
    dpugh
    Participant

    Tony

    You get this when the row doesn't have a unique row id.

    in reply to: jqGrid in UI tabs #97730
    dpugh
    Participant

    Great minds think alike Smile

    in reply to: jqGrid in UI tabs #97721
    dpugh
    Participant

    An alternative is to load the grid only when the tab is clicked i.e.

    $(document).ready(function(){

    $('#tabs').tabs({

    “select”:function(event,ui){

    switch(ui.index){

    case 0:

    loadGrid();

    break;

    ……..

    }

    }

    });

    });

    .

    var grid_isloaded=false;

    function loadGrid(){

    if(!grid_isloaded){

    $('#…').jqGrid({…..});

    grid_isloaded=true;

    }else

    $('#…).trigger(“reloadGrid”);

    };

    This is what I do

Viewing 4 replies - 1 through 4 (of 4 total)

Stay connected with us in your favorite flavor!