The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
ADAdministrator Syncfusion Team August 16, 2005 08:02 AM UTC
The GroupingGridControl has 2 different selection mechanisms.
One is the record selection support that is specific to the GridGroupingControl that has knowledge of grouping and nested tables. It only allows selecting records. You indicate you want to use this support by setting:
grid.TableOptions.AllowSelection = GridSelectionFlags.None;
grid.TableOptions.ListBoxSelectionMode = (something other than None);
The other selection support is the support that is inherited from GridControlBase. This support will let you select any set of cells depending upon the setting specified in grid.TableOptions.AllowSelections. You also have to set grid.TableOptions.ListBoxSelectionMode = None. But this inherited selection techniques is only reasonable for simple flat tables. It does not have any knowledge of groups or nested tables. But it will allow you to select columns in flat tables if that is what you want.
ADAdministrator Syncfusion Team August 16, 2005 10:49 AM UTC
Markus,
Check out also the following thread:
http://www.syncfusion.com/Support/Forums/message.aspx?MessageID=26611
There is a sample at the end of the thread that shows another option for selecting columns.
Stefan
>The GroupingGridControl has 2 different selection mechanisms.
>
>One is the record selection support that is specific to the GridGroupingControl that has knowledge of grouping and nested tables. It only allows selecting records. You indicate you want to use this support by setting:
>
>grid.TableOptions.AllowSelection = GridSelectionFlags.None;
>grid.TableOptions.ListBoxSelectionMode = (something other than None);
>
>
>The other selection support is the support that is inherited from GridControlBase. This support will let you select any set of cells depending upon the setting specified in grid.TableOptions.AllowSelections. You also have to set grid.TableOptions.ListBoxSelectionMode = None. But this inherited selection techniques is only reasonable for simple flat tables. It does not have any knowledge of groups or nested tables. But it will allow you to select columns in flat tables if that is what you want.