Can You explain me, what do the following code ( from demo file databoundGridForm.cs ):
private void groupBtn_Click(object sender, System.EventArgs e)
{
this.dataGrid.Rows.Group(new Column[]{
this.dataGrid.Columns.Items[0],
this.dataGrid.Columns.Items[2]
});
}
This code dos not perform grouping. Only clear selected and focused nodes !!!!
In my code when data tables is empty, this code remove grouping columns. When table is filled with data, only clear selected and focused nodes too.
Can you check Your code and halp me ??
BTW
May code is very big with many dependenties, and I can't send this to you.
Robert