Is there a specific CSS class for a grid's emptyText
? After inspecting the element with Firebug, all I found was:
<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>
It appears that there isn't a unique class to target and style the emptyText
. Is there a way to add a custom class or special styling for the empty text?
Additional Information:
I tried this approach which worked well:
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>'