Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一列显示 db id,我希望此列自动将其宽度调整为最长的。我找到了一个名为的配置选项,shrinkWrap但我在屏幕上看不到任何结果。
shrinkWrap
有一个私有函数expandToFit可用于网格标题的容器对象。
expandToFit
在所有记录都加载到网格中之后,在对象上尝试这样的操作Ext.grid.column.Column,例如:viewReadyExt.grid.Panel
Ext.grid.column.Column
viewReady
Ext.grid.Panel
column.ownerCt.expandToFit(column);
遍历列并为每个要扩展的列调用上述语句。
尝试像这样使用 flex 属性:
{ text:"Ids", dataIndex:'Ids', flex:1 }