网格的emptyText是否有任何特殊的类?我试图与Firebug一起检查元素,但发现只有以下内容:

<div id="gridview-1021" class="x-component x-grid-view x-fit-item x-component-default
 x-unselectable" role="presentation" tabindex="-1" style="-moz-user-select: none; width: 398px; height: 150px;">
There are no items to show in this view.
</div>

似乎没有特殊的类来标识CSS并将其应用于emptyText。是否可以添加类或以特殊方式设置空文本的样式?

注意:

我这样做了,对我来说效果很好:
emptyText: '<div style="width:auto; text-align:center; padding-top:50px; color:red; font-weight:bold;">There are no items to show in this view.</div>'

最佳答案

columns:[{
                header: 'columnName',
                dataIndex: 'dataIndex',
                renderer: function(value, metaData, record, rowIndex) {
                      if (value == '')
                        metaData.tdCls = 'emptyText';
                }
}]

并且您应该定义emptyText CSS规则。此自定义渲染器应用于特定列

10-08 19:20