How to select more than one row in native list view ?

0
Hello Experts, I am working on a native mobile Mendix application using mendix 15.2 version. I am using list view on some pages and I want to select more than one row from the list. But somehow I am able to select only one row at a time.  Can Anyone suggest how to select more than one row from the list view in native mobile? Thanks and Regards, Ankit Gupta
asked
1 answers
1

Hello Ankit,

I think you will need to model this out using a helper object and helper attribute to determine if a row is selected or not. On click of a listview item you will need to toggle the selected state and retrieve or filter all selected items in your processing logic.

answered