Displayed Table Name

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?

1 Reply

AD Administrator Syncfusion Team August 30, 2005 03:17 PM UTC

Try changing the name on the relation descriptor. GridTableDescriptor td = this.gridGroupingControl1.TableDescriptor; GridRelationDescriptor rd = td.Relations["A"]; rd.Name = "Test";

Loader.
Up arrow icon