1

我在 ExtJs 3.4 应用程序中有一个网格面板:

kad_tab = new Ext.ux.grid.livegrid.GridPanel({
    store: store,
    region: 'center',
    cm: cm, 
    selModel: new Ext.ux.grid.livegrid.RowSelectionModel(),
    stripeRows : true,
    view: myView,
    //height: 390,
    loadMask: true,
    id: 'kad_tab',
    autoExpandColumn:'cadColumn',
    title:'Земельные участки',
    autoWidth:true,
    autoScroll: true,

并查看:

    var myView = new Ext.ux.grid.livegrid.GridView({
    nearLimit : 70,
    autoFill: true,
    scrollOffset: 0,
    loadMask  : {
        msg :  'Buffering. Please wait...'
    }
});

以及它的外观:

在此处输入图像描述

您会看到最后一行存在一些问题。我认为它是因为水平滚动。它可以删除水平滚动吗?

4

2 回答 2

6

试试这个

forceFit: true 

网格的内部 viewConfig

于 2013-02-15T06:42:29.283 回答
2

使用样式:{overflowX:'hidden'} 或 {'overflow-x':'hidden'}。

'隐藏'应该是类。

并尝试autoscroll:false

于 2013-02-14T15:15:06.777 回答