Hello,
A possible workaround is to handle the ViewCellFormatting event of the grid this way:
private void RadGridView1_ViewCellFormatting(object sender, CellFormattingEventArgs e)
{
GridCheckBoxHeaderCellElement headerCellElement = e.CellElement as GridCheckBoxHeaderCellElement;
if (headerCellElement != null)
{
headerCellElement.CheckBox.ReadOnly = headerCellElement.ColumnInfo.ReadOnly;
}
}
Regards,
Hristo
Progress Telerik