This question is locked. New answers and comments are not allowed.
Hi, I am trying to add a button to a column header however the click event does not seem to be handled. Currently I am instructing it to insert a new row simply to test it's functionality. I have insured that it is simply because the button is in the header that it does not function by using the same command for a button within a cell. Please help me understand what needs to be done, my code for the specific column is below.
<telerik:GridViewColumn>
<telerik:GridViewColumn.Header>
<telerik:RadButton Style="{StaticResource Remove/Add_From_List_Button_Style}" Content="+" FontFamily="Arial" FontSize="18" FontWeight="Bold" Foreground="Green" Command="telerik:RadGridViewCommands.BeginInsert" Margin="0"/>
</telerik:GridViewColumn.Header>
<telerik:GridViewColumn.CellTemplate>
<DataTemplate>
<telerik:RadButton Style="{StaticResource Remove/Add_From_List_Button_Style}" Content="X" FontFamily="Arial" FontSize="12" FontWeight="Bold" Foreground="Red" Command="telerik:RadGridViewCommands.Delete"/>
</DataTemplate>
</telerik:GridViewColumn.CellTemplate>
</telerik:GridViewColumn>
Thanks,
Adam Burdette

<telerik:GridViewColumn.Header>
<telerik:RadButton Style="{StaticResource Remove/Add_From_List_Button_Style}" Content="+" FontFamily="Arial" FontSize="18" FontWeight="Bold" Foreground="Green" Command="telerik:RadGridViewCommands.BeginInsert" Margin="0"/>
</telerik:GridViewColumn.Header>
<telerik:GridViewColumn.CellTemplate>
<DataTemplate>
<telerik:RadButton Style="{StaticResource Remove/Add_From_List_Button_Style}" Content="X" FontFamily="Arial" FontSize="12" FontWeight="Bold" Foreground="Red" Command="telerik:RadGridViewCommands.Delete"/>
</DataTemplate>
</telerik:GridViewColumn.CellTemplate>
</telerik:GridViewColumn>

Thanks,
Adam Burdette