I cannot seem to figure out what this column is or how to get rid of it. There is a very narrow column that appears all the way to the left in the GridView by default. It has no content, but can be moved around in between the other columns. Can anyone help?
I've attached an image to explain what I am talking about. Here's my xaml for the GridView...
<telerik:RadGridView x:Name="VariablesGridView"
ItemsSource="{Binding Sequence.Variables}"
CanUserSortColumns="False"
CanUserInsertRows="False"
AutoGenerateColumns="False"
RowDetailsVisibilityMode="VisibleWhenSelected"
ShowGroupPanel="False"
RowIndicatorVisibility="Collapsed"
SelectionMode="Multiple">
<telerik:RadGridView.Columns>
<telerik:GridViewDataColumn DataMemberBinding="{Binding Name}" Header="Name" IsReadOnly="False" IsFilterable="False"/>
<telerik:GridViewDataColumn CellTemplate="{StaticResource VariableTypeTemplate}" Header="Type" IsReadOnly="False" IsFilterable="False"/>
<telerik:GridViewDataColumn DataType="system:Object" DataMemberBinding="{Binding Value}" Header="Value" IsReadOnly="False" IsFilterable="False"/>
</telerik:RadGridView.Columns>
<telerik:RadContextMenu.ContextMenu>
<telerik:RadContextMenu x:Name="VariablesContextMenu"
ItemContainerStyle="{StaticResource RadMenuItemStyle}"
Opened="ContextMenu_Opened"
IconColumnWidth="0"
ItemClick="ContextMenu_ItemClick" />
</telerik:RadContextMenu.ContextMenu>
</telerik:RadGridView>