Multi-select?

I can''''t seem to be able to select >1 cell. In other words when I shift-select or ctrl-select, the active cell just moves but I dont end up selecting a range...

3 Replies

AD Administrator Syncfusion Team July 2, 2004 12:22 PM UTC

you can do this: this.gridGroupingControl1.TableOptions.ListBoxSelectionMode = SelectionMode.MultiExtended; this.gridGroupingControl1.TableOptions.AllowSelection = GridSelectionFlags.Any;


DC Daniel Chait July 6, 2004 01:34 PM UTC

That seems to make it so that it selects the entire row anytime I click, which is wrong. I need to be able to shift-arrow to select, or to shift-click to select, a range of cells -- or if I click the header column on the left, to select the entire row. >you can do this: > > this.gridGroupingControl1.TableOptions.ListBoxSelectionMode = SelectionMode.MultiExtended; > this.gridGroupingControl1.TableOptions.AllowSelection = GridSelectionFlags.Any; >


AD Administrator Syncfusion Team July 6, 2004 04:01 PM UTC

Daniel, calling this.gridGroupingControl1.TableOptions.AllowSelection = GridSelectionFlags.Any; without changing this.gridGroupingControl1.TableOptions.ListBoxSelectionMode will let you select a range of cells. Stefan

Loader.
Up arrow icon