This question is locked. New answers and comments are not allowed.
I am using a telerik Grid in my application and have some columns on the grid. For some of the columns I am showing total count of individual column at below cell of the columns.For some condition, I have set readonly true and light gray background to a column(see code in bold). Now if condition is true, we have the column like in attachement (screen1). If once that column is set readonly and with gray background and we fires same code with condition making false then (code in normal font and italic gets executed) we get entire column in correct order but still we have footer total count cell as Read Only and with Gray background (attachment screen2).
Please provide some solution for this and let me know if it is a kind of bug.
if
(Some Condition)
{
this.gridView.Columns[Index].IsReadOnly = true;
this.gridView.Columns[Index].Background = new SolidColorBrush(Colors.LightGray);
}
else
{
this.gridView.Columns[Index].IsReadOnly = false;
this.gridView.Columns[Index].Background = null;
}
Please provide some solution for this and let me know if it is a kind of bug.