Hi everyone
I have an app with several B4XPages. Every B4Xpage shows data from different tables of a database from web into B4XTables.
My question is this: Can i use a B4XTable from (for example) B4XPage1 to B4XPage2 without creating new B4XTable or downloading data from database.
In B4XPage2 I made a form with VD with a panel (with name panel1) and inside a B4XTable named B4XTable1 (the same name as B4XPage1)
The code bellow is what i did to B4XPage2
and when i hit the button btnInsert i want to show panel1 with B4XTable from B4XPage1 and also later i want to customize display with .CreateDataView.
So:
I will be greatfull with any advice.
I have an app with several B4XPages. Every B4Xpage shows data from different tables of a database from web into B4XTables.
My question is this: Can i use a B4XTable from (for example) B4XPage1 to B4XPage2 without creating new B4XTable or downloading data from database.
In B4XPage2 I made a form with VD with a panel (with name panel1) and inside a B4XTable named B4XTable1 (the same name as B4XPage1)
The code bellow is what i did to B4XPage2
B4X:
Private B4XPp1 As B4XPage1
B4XPp1.Initialize
and when i hit the button btnInsert i want to show panel1 with B4XTable from B4XPage1 and also later i want to customize display with .CreateDataView.
So:
B4X:
Sub btnInsert_Click
panel1.Visible = True
' And now i am stuck!!!
End Sub
I will be greatfull with any advice.