AD
Administrator
Syncfusion Team
July 4, 2005 09:22 AM UTC
Try setting this property:
this.gridGroupingControl1.TableDescriptor.Name = "someName";
DS
Damien Sawyer
July 4, 2005 10:51 PM UTC
Thanks Clay, I did try that, however to no avail. It doesn''t seem to have any effect.
If it helps, my code is below...
Thanks for any help you might be able to give...
IList items = new ArrayList();
items.Add(Application.Item("001055"));
ArrayList Columns = new ArrayList();
this.grItems.ShowGroupDropArea = true;
this.grItems.TopLevelGroupOptions.ShowCaption = false;
this.grItems.TableDescriptor.Columns.Clear();
// Code below to add colums via object reflection... truncated
.....
GridColumnDescriptor gcd = new GridColumnDescriptor(pi2.Name,
pi2.Name,
myAttrib.ColumnName,
false,
myAttrib.ColumnWidth);
this.grItems.TableDescriptor.Columns.Add(gcd);
......
this.grItems.DataSource = items;
//this.grItems.TableDescriptor.Name = ""; // This removes the "arraylist" label from the group by bar
this.grItems.TableDescriptor.Name="New Name";
AD
Administrator
Syncfusion Team
July 4, 2005 11:26 PM UTC
If I understand what you want, this works fro me using 3.2.1.0.
http://www.syncfusion.com/Support/user/uploads/GGC_ArrayList_20b1dbb5.zip