We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

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.
Live Chat Icon For mobile
Up arrow icon