dojox.grid.DataGrid隐藏/禁用网格的标题

时间:2011-05-27 12:26:23

标签: dojox.grid.datagrid

我需要一个选项来隐藏dojox.grid.DataGrid网格中的标题。 没找到任何东西。 我很感激任何信息!

4 个答案:

答案 0 :(得分:4)

我在dojo 1.6中使用(自dojo 1.3以来可能有效)

#myGrid .dojoxGridHeader  { display:none; }

答案 1 :(得分:1)

您可以使用CSS:

.dojoxGrid-header {display:none; }

此解决方案取自: http://dojotoolkit.org/reference-guide/dojox/grid/DataGrid.html#hiding-the-headers-of-a-grid

答案 2 :(得分:0)

你可以在数据网格的后期连接处连接。然后找到创建的headerGrid元素 然后将样式显示设置为无。

 //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";
                            });

答案 3 :(得分:0)

我建议切换到使用new and improved dgrid而不是datagrid,它会好很多!

隐藏标题的设置是属性'showHeader',它是一个布尔值。

查看此dgrid tutorial,通过定义网格结构(包括'showHeader')来与您进行对话。