1

我正在使用 dojo dataGrid 来呈现表格。我需要隐藏标题行。

Dojo 文档推荐使用 .dojoxGrid-header { display:none; } 关闭列标题,但我只看到调试器中使用了 dojoxGridMasterHeader。 http://dojotoolkit.org/reference-guide/1.7/dojox/grid/DataGrid.html#hiding-the-headers-of-a-grid

为了隐藏dojo dataGrid 的标题行,我在HTML 文件中定义了它。

.dojoxGridMasterHeader { display:none; }

我先加载了 dojo 库,然后加载了我自己的 CSS 样式。

<style type="text/css">
.dojoxGridMasterHeader { display:none; }
</style>

但是,UI 仍会在 dataGrid 中显示标题。调试器显示此标头代码

我不明白为什么 CSS 仍然会被覆盖为 style="display: block"

非常感谢。

4

1 回答 1

1

添加!important

.dojoxGridMasterHeader {
     display: none !important;
}

http://jsfiddle.net/cswing/Uy3nQ/

于 2012-06-13T13:27:50.883 回答