我正在尝试显示Ext.grid.Grid
并将其放到页面上。理想情况下,我想使用flex配置使某些列按比例变宽。但这不起作用。下图是将flex添加到没有宽度的列的网格。
columns: [
{ text: 'Name', dataIndex: 'name'},
{ text: 'Email', dataIndex: 'email' },
{ text: 'Phone', dataIndex: 'phone' }
],
如果我在列上指定宽度,我会得到以下内容:
columns: [
{ text: 'Name', dataIndex: 'name', width: 100 },
{ text: 'Email', dataIndex: 'email', width: 230 },
{ text: 'Phone', dataIndex: 'phone', width: 150 }
],
是否还有其他方法可以让网格正确显示,并希望适合周围的面板,使柱子伸展到适合?