This question is locked. New answers and comments are not allowed.
Hello
Since I updated my project to Q3 SP1, one of my grid is behaving quite strangely.
Here's the thing, it's a standard use of the grid, I create every columns I need in xaml and bind them to a IList collection.
I have a rowDetails template triggered by a GridViewToggleRowDetailColumn, here's the definition
And InfoDetailsTemplate is a UserControl with two dependancy properties, id_societe and code_ecriture.
The UserControl contains a RadTabControl with two items and a gridview in each.
My problem is that when I click on the Toggle column, the grid turns grey, and there is a bunch of graphic bugs which disappeard when I click again.
None of the grids contains a style or a contentTemplate of any kind.
Any ideas ?
Since I updated my project to Q3 SP1, one of my grid is behaving quite strangely.
Here's the thing, it's a standard use of the grid, I create every columns I need in xaml and bind them to a IList collection.
I have a rowDetails template triggered by a GridViewToggleRowDetailColumn, here's the definition
| <grid:RadGridView.RowDetailsTemplate> |
| <DataTemplate> |
| <local:InfoDetailsTemplate id_societe="{Binding id_societe}" code_ecriture="{Binding code_ecriture}"/> |
| </DataTemplate> |
| </grid:RadGridView.RowDetailsTemplate> |
| <grid:RadGridView.Columns> |
| <grid:GridViewToggleRowDetailsColumn Width="50"> |
| </grid:GridViewToggleRowDetailsColumn> |
And InfoDetailsTemplate is a UserControl with two dependancy properties, id_societe and code_ecriture.
The UserControl contains a RadTabControl with two items and a gridview in each.
My problem is that when I click on the Toggle column, the grid turns grey, and there is a bunch of graphic bugs which disappeard when I click again.
None of the grids contains a style or a contentTemplate of any kind.
Any ideas ?