This is a migrated thread and some comments may be shown as answers.

[Solved] Grouping Overlapping Grid Header

2 Answers 125 Views
Grid
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Cyndie
Top achievements
Rank 1
Cyndie asked on 23 Sep 2010, 06:41 PM

I'm sure this is probably a CSS issue, but not sure where to look.  I have a Grid inside a PanelBar with grouping and the X of the grouping buttons is overlapping the grid header row.  See attached image.

.Groupable(grouping => grouping
    .Groups(groups=>
        {
            groups.Add(c => c.Substn);
            groups.Add(c => c.Devtyp);
            groups.Add(c => c.Device);
            groups.Add(c => c.Analog);
        })
        )

2 Answers, 1 is accepted

Sort by
0
Alex Gyoshev
Telerik team
answered on 24 Sep 2010, 08:55 AM
Hello Cyndie,

Use the approach outlined in your other thread. If this doesn't help, send a sample solution.

Sincerely yours,
Alex Gyoshev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Cyndie
Top achievements
Rank 1
answered on 24 Sep 2010, 02:04 PM
I added the following to telerik.common and it corrected the issue.  The .t-panelbar .t-link css was being applied because I had the grid inside a panelbar and causing the issue.

.t-panelbar .t-grid .t-link, .t-panelbar .t-numerictextbox .t-link
{
    display: inline-block;
    border-bottom: none;
}
Tags
Grid
Asked by
Cyndie
Top achievements
Rank 1
Answers by
Alex Gyoshev
Telerik team
Cyndie
Top achievements
Rank 1
Share this question
or