我需要一個選項來隱藏dojox.grid.DataGrid網格的標題。 沒有找到任何內容。 我很感激任何信息!dojox.grid.DataGrid隱藏/禁用網格標題
1
A
回答
1
您可以使用CSS:
.dojoxGrid-header {display:none; }
該解決方案是取自: http://dojotoolkit.org/reference-guide/dojox/grid/DataGrid.html#hiding-the-headers-of-a-grid
4
我在道場1.6使用(和因爲道場1.3大概作品)
#myGrid .dojoxGridHeader { display:none; }
0
ü可以在數據網格的postrender連接。然後找到創建的headerGrid元素 ,然後將樣式顯示設置爲none。
//workaround the grid calls postrender after
//the component is at the dom.
//so then i can change the style to reset the header to invisible
dojo.connect(grid,"postrender",function(){
var headerGrid =this.domNode.firstElementChild;
headerGrid.style.display="none";
});
0
我建議切換到使用new and improved dgrid而不是datagrid,這是好多了!
隱藏標題的設置是屬性'showHeader',它是一個布爾值。
看看這個dgrid tutorial,通過定義包括'showHeader'的網格結構來說明你。
相關問題
- 1. Vaadin 8隱藏網格標題
- 2. 隱藏ExtJS網格列標題
- 3. 在jqgrid中隱藏子網格標題
- 4. 禁用或隱藏標題欄
- 5. 禁用的按鈕隱藏標題
- 6. 隱藏網格的問題
- 7. 在ShieldUI網格中隱藏標題標題
- 8. 禁用,不隱藏標籤
- 9. 如何禁用dojox.grid.DataGrid
- 10. 如何隱藏特定的列在dojox.grid.DataGrid
- 11. 隱藏網格列
- 12. pyqt4網頁隱藏窗口標題欄
- 13. 使用jQuery隱藏標題
- 14. iTerm2 - 隱藏拆分窗格標題欄?
- 15. 隱藏標題欄
- 16. 如何隱藏網格標題中的排序號碼
- 17. Ext Js - 顯示/隱藏網格的標題菜單
- 18. 隱藏動態infragistics網格中的列並更新標題
- 19. 如何在jqgrid的頁眉標題網格中隱藏邊框?
- 20. Fullcalendar - 在網格標題中隱藏日期
- 21. magento - 隱藏網格過濾器,但不禁用它
- 22. Quicktime標誌!它可以隱藏/禁用?
- 23. 禁用單擊時隱藏標題工具提示文本?
- 24. 隱藏/顯示網格?
- 25. jqgrid隱藏的子網格
- 26. XAML C#隱藏網格行
- 27. WPF隱藏網格列
- 28. 隱藏網格中的列
- 29. 隱藏Kendo UI網格toobar
- 30. 隱藏表格行問題
謝謝,這應該在dojo文檔中提到:-) – 2012-03-16 09:20:23