Issue with optimization

Hi,

I found an issue when I used optimization inside GGC.

I can't do :
this.gridGroupingControl1.TableOptions.AllowSelection = Syncfusion.Windows.Forms.Grid.GridSelectionFlags.Row;

while the optimization is enabled(a message is displayed: "Parameter is not valid". If I desactivate the optimization, it works.

I send you an example. I want to use optimization without any issue, can you help me?

Thank you,

Fred



IssueSyncfusionGGC_67ea52fa.zip

1 Reply

JJ Jisha Joy Syncfusion Team October 3, 2008 07:01 AM UTC

Hi Fred,

Please use the ListBoxSelectionMode instead.Please refer the code:


this.gridGroupingControl1.TableOptions.AllowSelection = Syncfusion.Windows.Forms.Grid.GridSelectionFlags.None;
this.gridGroupingControl1.TableOptions.ListBoxSelectionMode = SelectionMode.One;

Please try this and let me know if this helps.

Regards,
Jisha


Loader.
Up arrow icon