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

Issue In Radgridview Pinned Column During Horizontal Scrolling!

1 Answer 60 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Marlon
Top achievements
Rank 1
Marlon asked on 31 Oct 2007, 06:02 AM
I am new to using this control set, I tried using RadGridview control with a single pinned column. The pinned column works fine except when I try scrolling horizontal to the right it seems that rest of the column data overlays the pinned column. Is anyone able to provide feedback on this issue.

1 Answer, 1 is accepted

Sort by
0
Jack
Telerik team
answered on 31 Oct 2007, 03:09 PM
Hi Marlon,

Thank you for reporting this issue.

Please, excuse us for the inconvenience. We have added 500 points to your account for the suggestion. We will fix this issue in our next service pack. At this moment you can use the following workaround (we assume that RadGridView uses Vista theme):

void radGridView1_CellFormatting(object sender, CellFormattingEventArgs e) 
    if (e.CellElement.ColumnInfo is GridViewDataColumn && e.CellElement.ColumnInfo.IsPinned) 
    { 
        e.CellElement.ZIndex = 25000; 
        e.CellElement.DrawFill = true
        e.CellElement.BackColor = Color.White; 
        e.CellElement.GradientStyle = GradientStyles.Solid; 
    } 

A modified version of the Vista theme that contains these fixes is attached here.

Don't hesitate to contact us if you have other questions.

Sincerely yours,
Jack
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
GridView
Asked by
Marlon
Top achievements
Rank 1
Answers by
Jack
Telerik team
Share this question
or