Select First in a List View

1
In a Data Grid or Template Grid there is an option to enable/disable Select First, to select the first row.  However this functionality does not exist in a List View, is anyone aware why this is, and if it is possible to implement the same behaviour?  
asked
2 answers
1

To make the select first visual you could add a javascript snippet:

var listview = document.getElementsByClassName("yourListViewClassName")[0];
var firstItem = listview.getElementsByClassName("mx-listview-item")[0];
firstItem.className += " selected";

 

answered
0

You can try the selection helper widget.

https://appstore.home.mendix.com/link/app/27519/Mendix/Selection-Helper

answered