我想要一個只有兩列的網格,一個是名稱,另一個是百分比。最後一行將以'總'作爲名稱,總百分比以'百分比'表示。此行的樣式不同於其他行。請指導我如何做到這一點。 謝謝..extJs 4網格自定義 - 結束行總數
6
A
回答
11
有一個網格功能來完成。在文檔中涵蓋了here以及如何使用它的一些示例。
您還可以通過在您的css中提供您自己的x-grid-row-summary
類實現來自定義樣式。
編輯
這裏的設置摘要行的風格,你可以看到有幾個方法可以去它的一些例子。要知道,直到viewready
事件發生摘要行不能被引用,它不準備在afterrender
事件,所以我把所有這種邏輯在viewready
聽衆:
Ext.create('Ext.grid.Panel', {
features: [{
ftype: 'summary'
}],
// other grid configs ...
listeners: {
viewready: function(grid) {
// get reference to the summary row
var summaryRow = grid.view.el.down('tr.x-grid-row-summary');
// this will apply a css class to the row, in this example,
// I am applying the extjs grid header style to my summary row
summaryRow.addCls('x-grid-header-ct');
// or, to do it all in javascript as you mentioned in the comment
// first you would create a style object, I took these style
// properties from the .x-grid-header-ct
aStyleObject = {
cursor: 'default',
zoom: 1,
padding: 0,
border: '1px solid #d0d0d0',
'border-bottom-color': '#c5c5c5',
'background-image': 'none',
'background-color': '#c5c5c5'
}
// then you pass the style object using setStyle
summaryRow.setStyle(aStyleObject);
// or you could set the style for each cell individually using
// addCls or setStyle:
Ext.Array.each(summaryRow.query('td'), function(td) {
var cell = Ext.get(td);
cell.addCls('some-class');
// or
cell.setStyle(anotherStyleObject);
});
}
}
});
0
如果我們有摘要行(like this ),我們可以在特定頁面上使用CSS。
<style>
.x-grid-row-summary .x-grid-cell{
background-color: #f00 !important;
font-size: x-large !important;
}
相關問題
- 1. EXTJS 5樹網格自定義行css
- 2. Extjs 4網格排序後自定義函數調用
- 3. ExtJS網格狀自定義控件
- 4. 自定義Ext.window.MessageBox ExtJS 4
- 5. ExtJs中的自定義網格
- 6. Dojo數據網格 - 自定義行,未被結構定義
- 7. 添加自定義行作爲第1行中網格ExtJS的
- 8. 自定義webapi函數綁定來存儲extjs網格
- 9. Extjs 4:更多selType網格
- 10. ExtJS 4網格列錯誤
- 11. Extjs顯示網格中的自定義行
- 12. EXTJS 4網格選擇模型行
- 13. extjs 4 getLastSeletedCell在網格
- 14. Javascript - ExtJs - 如何在數據網格中的第n行添加自定義行?
- 15. 用extjs 4嵌套網格
- 16. 問題與EXTJS 4網格
- 17. extjs 4網格樹拖拽
- 18. Shinobi Chsrts網格線自定義行數
- 19. 在ExtJS 4中自定義overflowHandler實現
- 20. Extjs 4 rowediting自定義驗證
- 21. Extjs網格分組彙總
- 22. ExtJs 4網格沒有填充數據
- 23. Extjs自定義TreeGrid行CSS
- 24. ExtJS 4 - 網格單元格事件?
- 25. 在ExtJS中,如何將自定義CSS類添加到數據網格行?
- 26. 如何使用json數據綁定Extjs網格4的數據
- 27. ExtJS 4 - 從超鏈接加載網格
- 28. Extjs 4 - 組合兩個網格列
- 29. 在ExtJS 4 Grid中將行懸停顯示自定義菜單
- 30. ExtJS 4在會話結束後從ExtJS註銷
我可以修改網格的CSS通過配置在ExtJs的。我的意思是行的背景顏色,蛀蟲風格,x-grid-row-summary顏色都來自Js? – dev 2012-03-17 15:36:12
@dev我加了一些設置彙總行樣式的示例 – Geronimo 2012-03-17 20:21:18
謝謝,這是一個很好的解釋 – dev 2012-03-17 20:24:32