jcesar Active Member Licensed User Longtime User Mar 7, 2019 #1 Hi Its there multiselection in a xCLV ? I'm asking this because all rows stay selected after a touch event. See image. Attachments Screenshot_20190307-163055.png 179.9 KB · Views: 146
Hi Its there multiselection in a xCLV ? I'm asking this because all rows stay selected after a touch event. See image.
DonManfred Expert Licensed User Longtime User Mar 7, 2019 #2 and what are you doing in the touchevent? Maybe changing the color of the touched panel? Upvote 0
jcesar Active Member Licensed User Longtime User Mar 7, 2019 #3 DonManfred said: and what are you doing in the touchevent? Maybe changing the color of the touched panel? Click to expand... Hi DonManfred i just call other activity with record details. B4X: Sub clv1_ItemClick (Index As Int, Value As Object) Main.ID_CLIENTE = Value StartActivity(DetCliente) End Sub Upvote 0
DonManfred said: and what are you doing in the touchevent? Maybe changing the color of the touched panel? Click to expand... Hi DonManfred i just call other activity with record details. B4X: Sub clv1_ItemClick (Index As Int, Value As Object) Main.ID_CLIENTE = Value StartActivity(DetCliente) End Sub
Erel B4X founder Staff member Licensed User Longtime User Mar 8, 2019 #4 Add Sleep(300) before you call StartActivity. Upvote 0