The group text shown above each group is cut short if using a locked column. We would like this this text to flow into the unlocked section since the whole line seems empty and available. I realize it's rendered using two different tables, but the user doesn't care about that.
I made the following css hack to accomplish it. It looks okay, albeit a bit slow to render. Is there a better way?
div.k-grid-content-locked tr.k-grouping-row td:first-child {
height: 15px;
width: 200px;
}
div.k-grid-content-locked tr.k-grouping-row td:first-child p {
position: fixed;
height: 19px;
z-index: 300;
margin-top: -12px;
padding-top:5px;
background-color: #f5f5f5;
}