我在ExtJs 3.4 app中有一个Grid Panel:
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...'
}
});
它的样子:
你看到最后一行出了问题。我认为它是因为横向滚动。 可以删除水平滚动吗?
答案 0 :(得分:5)
试试这个
forceFit: true
网格的viewConfig里面
答案 1 :(得分:2)
使用样式:{overflowX:'hidden'}或{'overflow-x':'hidden'}。
'隐藏'应该是班级。
并尝试 autoscroll:false