Jump to content

Mobile DBListGrid - How to set Header Background Color ?


andyhill

Recommended Posts

Hi,

 

One possible solution:

 

1. UnimDBListGrid -> ClientEvents -> UniEvents ->

function beforeInit(sender, config)
{
    config.cls='customHeader';
}

2. UniServerModule -> CustomCSS:

.customHeader .x-toolbar {
    background-color: red;
    background-image: none;
    border-color: red;
    color: white;
}

 

Link to comment
Share on other sites

×
×
  • Create New...