Hi together,
I have got a gridgroupingcontrol which is bound to a dataset (which contains three tables - "A", "B", "C").
How can I change a displayed table name (e.g. "A" to "Test") without changing the real table name.
Can this be done via the TableDescriptor?
But when I change a TableDescriptor like this:
GridTableDescriptor childTD = myControl.GetTableDescriptor("A");
childTD.Name = "Test";
Why does another call of:
GridTableDescriptor childTD = myControl.GetTableDescriptor("A");
still gives the right Descriptor?