C CidTek Active Member Licensed User Longtime User Feb 15, 2011 #1 Is there anything similar to, or plans to implement a property similar to the VB ListView ItemData? I need to pass undisplayed values associated with each row in a listview when the row is tapped.
Is there anything similar to, or plans to implement a property similar to the VB ListView ItemData? I need to pass undisplayed values associated with each row in a listview when the row is tapped.
Jim Brown Active Member Licensed User Longtime User Feb 15, 2011 #2 Would the AddSingleLine2() help? You can add a different return value to that displayed B4X: Dim lv As ListView lv.AddSingleLine2("click me","return this message") Upvote 0
Would the AddSingleLine2() help? You can add a different return value to that displayed B4X: Dim lv As ListView lv.AddSingleLine2("click me","return this message")
C CidTek Active Member Licensed User Longtime User Feb 15, 2011 #3 Jim Brown said: Would the AddSingleLine2() help? You can add a different return value to that displayed B4X: Dim lv As ListView lv.AddSingleLine2("click me","return this message") Click to expand... Brilliant - that will do it! Thanks - you just saved me from writing a bunch off arrays to store data. Upvote 0
Jim Brown said: Would the AddSingleLine2() help? You can add a different return value to that displayed B4X: Dim lv As ListView lv.AddSingleLine2("click me","return this message") Click to expand... Brilliant - that will do it! Thanks - you just saved me from writing a bunch off arrays to store data.