Roberto P. Well-Known Member Licensed User Longtime User Oct 19, 2014 #1 how do i get a selected item in the list view after clicking? for example, as the list of the email. see picutre thanks
how do i get a selected item in the list view after clicking? for example, as the list of the email. see picutre thanks
Erel B4X founder Staff member Licensed User Longtime User Oct 19, 2014 #2 ListView doesn't have a selected item. The item is only momentary highlighted when the user presses on it. You need to handle the ItemClick event. You can use other lists such as CustomListView to implement a custom solution that does show a highlighted item. Upvote 0
ListView doesn't have a selected item. The item is only momentary highlighted when the user presses on it. You need to handle the ItemClick event. You can use other lists such as CustomListView to implement a custom solution that does show a highlighted item.