Rollup/Fixed Columns/Rows/Question

Ok...well we're at the end of our rope...

We thought we found the right vendor for our needs in Telerik Controls

However, I'm not sure there are ANY control vendors who can meet our very crazy requirements....

Anyway...I've spent the better part of 4 days trying to put together a prototype for our client using a Telerik Grid, and I've come up short...

At any rate, does anyone know of any vendors that offer the functionality (see attachment) in a Grid Control?





telerikNM2.zip

1 Reply

HA haneefm Syncfusion Team April 5, 2007 08:42 PM UTC

Hi Doug,

You can freeze the column by setting the column name to TableDescriptor.FrozenColumn property. Here is a code snippet

this.gridGroupingControl1.TableDescriptor.FrozenColumn = "Col1";

And also you you can manage the grouped columns in grid using TableDescriptor.GroupedColumns collections property.

[c#]
this.gridGroupingControl1.TableDescriptor.GroupedColumns.Add(string.Format("Col{0}",j));

Please refer to the attached sample for implementation and let me know if this helps.
FreezeANDGroupedColumnsGGC.zip

Best regards,
Haneef

Loader.
Up arrow icon