This question is locked. New answers and comments are not allowed.
I've found a problem with the gridview, when you enable reordering and make it possible to select which columns are
visible:
<
telerik:RadGridView
x:Name
=
"gvTvT"
Canvas.ZIndex
=
"3"
IsReadOnly
=
"False"
ElementExporting
=
"RadGridView1_ElementExporting"
Grid.Row
=
"1"
Grid.Column
=
"3"
Grid.ColumnSpan
=
"4"
Grid.RowSpan
=
"3"
GroupPanelBackground
=
"White"
GroupPanelStyle
=
"{StaticResource GridViewGroupedStyle}"
AutoExpandGroups
=
"True"
AutoGenerateColumns
=
"True"
CanUserResizeColumns
=
"True"
CanUserReorderColumns
=
"True"
HeaderRowStyle
=
"{StaticResource GVHeaderRow1}"
GroupPanelItemStyle
=
"{StaticResource GridViewGroupPanelItem}"
>
Run this grid, and when you do, remove a column from the middle of the grid, and drag another column from one side of the hidden column to the other. You'll fine a blank "header" shows up, with no corresponding column grid lines in the grid data. How can I fix this?
Update: I tried simplifying my grid down further, removing any styles, and it still render incorrectly. I did find a way to manually make the blank space go away, and that is by making the column visible again and then hiding it again. This leads me to believe this may be related to the column selection more than the reordering of columns?