I'm sure there is some property I am missing, but I am having an issue on initial load of the grid.
Given the following code, if I expand the width of "Column 1" to the right, I never get the horizontal scrollbar visible to scroll to view the hidden columns. This happens with EnableColumnVirtualization set to "True" as well.
Given the following code, if I expand the width of "Column 1" to the right, I never get the horizontal scrollbar visible to scroll to view the hidden columns. This happens with EnableColumnVirtualization set to "True" as well.
<
Window
x:Class
=
"WpfApplication1.GridWindow"
xmlns:telerik
=
"http://schemas.telerik.com/2008/xaml/presentation"
Title
=
"GridWindow"
Height
=
"300"
Width
=
"600"
>
<
Grid
>
<
telerik:RadGridView
EnableColumnVirtualization
=
"False"
>
<
telerik:RadGridView.Columns
>
<
telerik:GridViewColumn
Header
=
"Column 1"
/>
<
telerik:GridViewColumn
Header
=
"Column 2"
/>
<
telerik:GridViewColumn
Header
=
"Column 3"
/>
<
telerik:GridViewColumn
Header
=
"Column 4"
/>
<
telerik:GridViewColumn
Header
=
"Column 5"
/>
</
telerik:RadGridView.Columns
>
</
telerik:RadGridView
>
</
Grid
>
</
Window
>