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

Grid cells are getting disabled for grid with few columns freezed

1 Answer 35 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Norbert John
Top achievements
Rank 1
Norbert John asked on 31 May 2010, 11:16 AM
Hi,

I have a grid with 15-20 columns generated dynamically. First 2 columns are freezed. Third column is disabled. When we try to scroll the grid horizontally(with first two columns freezed), some of the cells are getting disabled. If we keep on scrolling grid horizontally(to left and right), the columns are getting enabled/disabled. The behaviour is not uniform too. Sometimes, cells are not getting disabled.

Please help.

Thanks and Regards,
Norbert John

1 Answer, 1 is accepted

Sort by
0
Maya
Telerik team
answered on 31 May 2010, 04:15 PM
Hello Norbert John,

This behavior is due to the virtualization. What you can do is to set it to "false" either in xaml:

<telerik:RadGridView Name="RadGridView1" EnableColumnVirtualization="False">
</telerik:RadGridView>
 
or in the code-behind:
this.RadGridView1.EnableColumnVirtualization = false;

I hope that helps.
 

Greetings,
Maya
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.
Tags
GridView
Asked by
Norbert John
Top achievements
Rank 1
Answers by
Maya
Telerik team
Share this question
or