Hi all,
How can I Hide the GridView's Group Panel and show it only when I group by a column
I try this
But it doesn't seem to work when I group By two columns :(
Thanks in advance.
Kort
How can I Hide the GridView's Group Panel and show it only when I group by a column
I try this
private void radGridView1_MasterGridViewTemplate_GroupingChanged(object sender, ListChangedEventArgs e) |
{ |
if (this.radGridView1.ShowGroupPanel == true) |
{ |
this.radGridView1.ShowGroupPanel = false; |
} |
else |
{ |
this.radGridView1.ShowGroupPanel = true; |
} |
} |
But it doesn't seem to work when I group By two columns :(
Thanks in advance.
Kort