How to add style to Ext.grid.feature.Grouping?
hi,i am using a dark layout and added grouping to my result grid. The header section of group not applying same style (access), it is white. Can I add some style to it? By CSS entry, or some property - not found any of this.features:
Code:
[Ext.create('Ext.grid.feature.Grouping',{ groupHeaderTpl: 'Related Project: {project.name} '})]
tried to play with this Style, does not solve, as another white box left around grid-title.
Code:
/*.x-grid-cell-inner, */
.x-grid-group-title {
/* padding: 0px;
border: 0px;
margin: 0px;*/
font-weight: bold;
/* font-size: 22px; */
background-color: #496085;
color: #FFFFFF;
}
thank you