This question is locked. New answers and comments are not allowed.
(Using Silverlight 4) I am using a RadGridView. I have added a checkbox column. (See Below)
This code works and gives me a datagrid that one column of checkboxes. But, is there a way to hide or disable the checkboxes for certain rows. I do not want to show the checkboxes on certain rows. And I want to keep a checkbox in the header row. Please let me know.
<telerik:RadGridView x:Name="radGridView" AutoGenerateColumns="False"> <telerik:RadGridView.Columns> <telerik:GridViewSelectColumn /> <telerik:GridViewDataColumn DataMemberBinding="{Binding Name}" /> </telerik:RadGridView.Columns> </telerik:RadGridView>This code works and gives me a datagrid that one column of checkboxes. But, is there a way to hide or disable the checkboxes for certain rows. I do not want to show the checkboxes on certain rows. And I want to keep a checkbox in the header row. Please let me know.