softtouch 9 Posted Tuesday at 05:25 PM I need something like the vcl listview, where I have multiple columns, and can select also multiple rows. I tried: 1. Listbox: No real rowselect, weird to handle multiple columns 2. Listview: No columns, no multi select 3. Grid: No multi select Is there no control out there simlar the vcl listview? I checked on github, and googled, but had no success. I cannot believe that such "normal" listview does not exist for firemonkey. Share this post Link to post
Angus Robertson 590 Posted Tuesday at 05:47 PM Think FMX TStringGrid is your closest bet, I've used it to replace TListView. But no obvious multi-select, Perhaps you can do the TListView VCL trick of drawing tick boxes in the first column and checking mouse events to 'select' them. The lack of many matching VCL components does make FMX conversions a pain. Angus Share this post Link to post
Serge_G 90 Posted Tuesday at 05:48 PM For point 3, grid : Look in my github https://github.com/Serge-Girard/StringGrid2Clipboard this discussion https://www.developpez.net/forums/d2134806/environnements-developpement/delphi/composants-fmx/desktop-tstringgrid-fmx-selections/ For ListView I wrote many bills in my French Blog look for tag Listview https://www.developpez.net/forums/blogs/138527-sergiomaster/b8177/fmx-selection-delements-tlistview/ Bonus : https://www.developpez.net/forums/blogs/138527-sergiomaster/b8201/fmx-selection-delements-tlistview-bonus/ 1 Share this post Link to post