I looked today for the 1st time into dynamically created B4J components.
I am wondering how to deal with those, how can I write to such component or can I receive events?
e.g.
I have a TabPane where I have a tableview and a button on - created via the designer , this TabPane is loaded via
if I like to write to a 'static' Tableview I use this for example
but how do I know the tableview if doing it dynamically?
same for the button?
THX
I am wondering how to deal with those, how can I write to such component or can I receive events?
e.g.
I have a TabPane where I have a tableview and a button on - created via the designer , this TabPane is loaded via
B4X:
TabPane1.LoadLayout("mytabLayout","Tab")
if I like to write to a 'static' Tableview I use this for example
B4X:
Dim Row(5) As Object
Row(0)=name.Trim
Row(1)=gen.Trim
Row(2)=WrapLabel(lbl, "CENTER_RIGHT")
Row(3)=c
Row(4)=getDateTime
TableView1.Items.Add(row)
but how do I know the tableview if doing it dynamically?
same for the button?
THX