gpt4 book ai didi

css - 窗口中的 ExtJS 4 gridpanel 烦人的水平滚动条

转载 作者:太空宇宙 更新时间:2023-11-04 09:34:13 25 4
gpt4 key购买 nike

我正在这样的窗口中创建一个网格:

Ext.create('Ext.data.Store', {
storeId:'simpsonsStore',
fields:['name', 'email',],
data:{'items':[
{ 'name': 'Lisa', "email":"lisa@simpsons.com" },
{ 'name': 'Bart', "email":"bart@simpsons.com" },
{ 'name': 'Homer', "email":"home@simpsons.com" },
{ 'name': 'Marge', "email":"marge@simpsons.com" }
]},
proxy: {
type: 'memory',
reader: {
type: 'json',
root: 'items'
}
}
});

Ext.create("Ext.window.Window", {
title: 'BlaBla',
closable: true,
modal: true,
width: 800,
height: 460,
layout: 'fit',
items: [
{
xtype: 'gridpanel',
autoScroll: true,
store: Ext.data.StoreManager.lookup('simpsonsStore'),
title: 'Choose which features you would like to use to create parts.',
// height: 300,
columns: {
items: [
{
header: 'Name',
tooltip: 'Name',
dataIndex: 'name',
flex: 1
},
{
header: 'Email',
tooltip: 'Email',
dataIndex: 'email',
flex: 1
}
]
}
},

]
}).show();

生成这样的窗口: window with grid

但是,网格面板有一个烦人的水平滚动条,这不是必需的,因为列是合适的。

为什么要创建滚动条,我应该用什么来代替?

最佳答案

这个滚动条是因为窗口的宽度和高度而产生的,而不是因为网格。您请调整窗口的宽度,您会得到想要的结果。我更改了窗口的 width 并且完美地出现了。这是你的 fiddle

关于css - 窗口中的 ExtJS 4 gridpanel 烦人的水平滚动条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40499540/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com