如果我在ext網格中具有柵格列,子列( 演示中的電子郵件列和電話列)不匹配。 這裏是演示:https://fiddle.sencha.com/#fiddle/5ih 我玩過寬度/最小寬度等,但似乎沒有工作。 但是,如果我使網格列較寬的子列似乎完全適合。ExtJs 4中的寬柵格列下不適合子列4
0
A
回答
2
我瘦塔也許問題是,你必須給minWidth固定頭, 和柔性屬性添加到每一列。 下面是我說的變化的小提琴叉。
minWidth : 500
flex : 1
0
如果您想使用的子欄目和其他人一樣,比如你有2列具有固定寬度和分組列的行爲應該像柔性柱(自動寬度),你需要編寫一個自己的函數來做這個調整大小。
這只是兩行:sencha example
說明:你需要一個resize
事件偵聽器添加到網格,在函數內部調整分列(S)
電網聽衆:
listeners: {
resize: function(grid) {
// you need to add and itemId for the sub columns parent
var subCols = grid.getView().getHeaderCt().child('#sub-cols');
// 200 = sum of the fixed width of columns
subCols.setWidth(grid.getWidth() - 200);
}
}
網格列:
{
text: 'sub columns',
itemId: 'sub-cols',
columns: [{
text: 'Email',
dataIndex: 'email',
flex: 1
}, {
text: 'Phone',
dataIndex: 'phone',
flex: 1
}]
}
相關問題
- 1. Extjs 4 - 組合兩個網格列
- 2. ExtJS 4網格列錯誤
- 3. ExtJS 4 - 柵格列編輯器邊框樣式聚焦時
- 4. ExtJS 4柵格重點加導航
- 5. ExtJS 4 CheckboxModel和網格列默認
- 6. ExtJS 4:網格列渲染器舊值
- 7. ExtJS的4:防止寬度
- 8. Extjs 4 Grid查找列
- 9. ExtJS的4列布局中FieldSet中
- 10. ExtJS 4柵格面板 - 空格鍵行切換
- 11. 鎖定ExtJS 4 TreePanel中的列?
- 12. ExtJS 4 recaptcha表格
- 13. extjs 4如何更改網格上顯示的列下拉列表的排序
- 14. ExtJS。適合網格寬度到面板
- 15. 在ExtJs 4中隱藏圖表系列
- 16. Bootstrap 4卡列寬度
- 17. extjs 4格在hbox中不出現
- 18. 濾波器同一列的ExtJS的4
- 19. ExtJS 4 - Grid - 禁用特定列的rowselection
- 20. 如何使用ExtJS動態地隱藏網格中的子列4
- 21. Extjs 4 - 合併2佈局
- 22. extjs 4 TreeStore和組合框
- 23. 組合框在Extjs 4
- 24. ExtJS 4 - 組合框問題
- 25. Foundation 6柵格列總是100%寬
- 26. 將柵格列寬設置爲Bound Perctange
- 27. 如何獲得Kendo柵格列寬
- 28. 日期列在extjs 4網格中爲空
- 29. ExtJS 4 - 在網格面板中包裝列標題
- 30. extjs 4