This is a migrated thread and some comments may be shown as answers.

[Solved] Telerik Grid Footer cell is readonly

1 Answer 82 Views
GridView
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Deepak Agarwal
Top achievements
Rank 1
Deepak Agarwal asked on 01 Oct 2010, 12:50 PM
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). 

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.

1 Answer, 1 is accepted

Sort by
0
Veselin Vasilev
Telerik team
answered on 06 Oct 2010, 02:49 PM
Hello Deepak Agarwal,

I could not reproduce the problem with the code you supplied. Please find attached my sample application and let me know what is different in your case.

Best wishes,
Veselin Vasilev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
GridView
Asked by
Deepak Agarwal
Top achievements
Rank 1
Answers by
Veselin Vasilev
Telerik team
Share this question
or