Display vertical line indicator at column where frozen column starts or end

How do I display a vertical line indicator to indicate when a frozen column begins or ends in a ggc?

5 Replies

JS Jeba S Syncfusion Team April 12, 2007 10:32 AM UTC

Hi James,

Please refer this sample:
http://websamples.syncfusion.com/samples/Grid.Windows/F59374/main.htm

This sample demonstrates how to freeze the columns in a grid grouping control that is bound to a hierarchical dataset. This feature will allow you to lock specific columns so that they will always be visible on the screen no matter how far you scroll to the right or down. It shows a vertical line indicator to indicate end of the frozen column.

Kindly let us know if this helps.

Best Regards,
Jeba.


JB James Blibo April 17, 2007 07:02 PM UTC

I can't seem to find the snippet in this sample that does the vertical line for the frozen column. Can you point me to the code snippet in this sample.


HA haneefm Syncfusion Team April 19, 2007 11:53 PM UTC

Hi James,

To display the fixed line in a GridGroupingGrid control, you need to set the TableDescriptor.FrozenColumn property . Here is a code snippet

[c#]
this.gridGroupingControl1.TableDescriptor.FrozenColumn = "ParentName";

If you want to change the color of the fixed line than set the TableModel.Properties.FixedLinesColor property to new color. Please try the below code snippet and let me know if this helps.

[c#]
this.gridGroupingControl1.TableModel.Properties.FixedLinesColor = Color.Red;

Sample : GGCFrozenColumns.zip

Best regards,
Haneef


JB James Blibo April 20, 2007 02:03 PM UTC

Sorry... this didn't work for me


HA haneefm Syncfusion Team April 20, 2007 08:21 PM UTC

Hi James,

Is it possible for you to upload us a sample or modify the attached sample to reproduce the issue here? This will help us to analyse the issue further.

Best regards,
Haneef

Loader.
Up arrow icon