调整大小(横向到纵向)的jqgrid在放入iframe并在ipad上查看时非常慢

时间:2015-04-22 21:43:23

标签: ipad iframe jqgrid resize

jqgrid位于iframe中。在ipad中从横向视图更改为纵向视图时,调整大小非常慢。现在我正在使用resize javascript函数来调整窗口大小调整网格的大小。我知道这是原因,有没有更好的解决方案来避免这个问题?

$("#Mygrid").jqGrid({
        datatype: "local",
        url: '#',
        colNames: [...],
        colModel: [...],
        viewrecords: true,
        height: "100%",
        gridview: true,
        altRows: true,
        altclass: 'myAltRowClass',
        autowidth: true,
        footerrow: true,
        loadonce: true,
        rowNum:10000
        });

是jqgrid代码

 $(window).bind('resize', function () {
    var statusGridWidth = $('#wrapper').width();
        $("#Mygrid").setGridWidth(statusGridWidth);
}).trigger('resize'); 

是要调整大小的代码。

0 个答案:

没有答案