moore_it Well-Known Member Licensed User Longtime User Dec 15, 2016 #1 I've a stepper in an tableview cell, i need to upadte a textfield in the same cell. I found the right stepper with ... dim s as stepper = sender but how i do for update the right textfield cell ? Thanks in advice
I've a stepper in an tableview cell, i need to upadte a textfield in the same cell. I found the right stepper with ... dim s as stepper = sender but how i do for update the right textfield cell ? Thanks in advice
Erel B4X founder Staff member Licensed User Longtime User Dec 15, 2016 #2 s.Parent will return the panel that holds the stepper and the TextField. B4X: Dim parent As Panel = s.Parent Dim tf As TextField = parent.GetView(1) 'the index depends on the order of items Upvote 0
s.Parent will return the panel that holds the stepper and the TextField. B4X: Dim parent As Panel = s.Parent Dim tf As TextField = parent.GetView(1) 'the index depends on the order of items