Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 2165 - MultiSelect to support Ctrl/Shift + Click
Summary: MultiSelect to support Ctrl/Shift + Click
Status: CONFIRMED
Alias: None
Product: TeeGrid for Delphi
Classification: Unclassified
Component: Grid (show other bugs)
Version: unspecified
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: david berneda
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2019-02-27 03:24 EST by yeray alonso
Modified: 2021-10-21 06:52 EDT (History)
0 users

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description yeray alonso 2019-02-27 03:24:10 EST
Currently you can select multiple cells through in a "Range" mode, dragging the mouse around cells to select a "rectangle" of them, or by code:

// range selection
TeeGrid1.Selected.Range.Enabled:= True; // <-- It is disabled by default

TeeGrid1.Selected.Range.FromColumn:= TeeGrid1.Columns[3];
TeeGrid1.Selected.Range.ToColumn:= TeeGrid1.Columns[6];

TeeGrid1.Selected.Range.FromRow:= 10;
TeeGrid1.Selected.Range.ToRow:= 15;

However, it would be nice to also support selecting multiple individual cells pressing Ctrl (or Shift) and clicking the cells to add/remove to the selection.
Comment 2 yeray alonso 2019-05-17 06:20:27 EDT
It would be desirable to also support selecting multiple rows when you have:

TeeGrid1.Selected.FullRow:=true;