Jacob
Jacob

Reputation: 4031

Can't find style for grouping feature header

I cannot find a way to style the header of the groupping feature. I have tried using the DOM to find a style but no success.

.idOfMyGrid .x-grid-group-row{
}

I want to have two different styles. When the group is closed and when the group is open

Example is here: https://fiddle.sencha.com/#fiddle/2hr. I want to style the header where it says "type".

Upvotes: 0

Views: 115

Answers (1)

kei
kei

Reputation: 20521

.x-grid-group-title {
  /* Expanded */
}

.x-grid-group-hd-collapsed .x-grid-group-title {
  /* Collapsed */
}

Upvotes: 2

Related Questions