This question is locked. New answers and comments are not allowed.
If you have a button in a column and set IsEnabled to false and there is a Command value present, the control will not be disabled.
This is a pain as I using binding to set the IsEnabled property.
<telerik:GridViewColumn> <telerik:GridViewColumn.CellTemplate > <DataTemplate> <telerik:RadButton Content="Delete" Command="telerikGrid:RadGridViewCommands.Delete" CommandParameter="{Binding}" Click="btnDeleteTimeCardPunch_Click" IsEnabled="False" /> </DataTemplate> </telerik:GridViewColumn.CellTemplate> </telerik:GridViewColumn>This is a pain as I using binding to set the IsEnabled property.