Hi Guys, I am new to B4X Pages, In the below project, When I click the B4XTable cell, It goes to another page with some views (Below the retrieve button) not visible, Then I click the retrieve button, All views are visible. I go back to page 1 and then click the B4XTable cell and come to page 2, I need to invisible the views below the retrieve button. It works only the first time. How to overcome this?
Hi Guys, I am new to B4X Pages, In the below project, When I click the B4XTable cell, It goes to another page with some views (Below the retrieve button) not visible, Then I click the retrieve button, All views are visible. I go back to page 1 and then click the B4XTable cell and come to page 2, I need to invisible the views below the retrieve button. It works only the first time. How to overcome this?
Call that sub from the B4XPage_Created in Hospital_Billing.
In B4XTable_Screen:
B4X:
Private Sub B4XTable1_CellClicked (ColumnId As String, RowId As Long)
' is_patientstatus = B4XTable1.GetRow(RowId).Get("Patient Status")
B4XPages.ShowPageAndRemovePreviousPages("hospital_billing")
B4XPages.MainPage.billing.HideDetails
End Sub
Call that sub from the B4XPage_Created in Hospital_Billing.
In B4XTable_Screen:
B4X:
Private Sub B4XTable1_CellClicked (ColumnId As String, RowId As Long)
' is_patientstatus = B4XTable1.GetRow(RowId).Get("Patient Status")
B4XPages.ShowPageAndRemovePreviousPages("hospital_billing")
B4XPages.MainPage.billing.HideDetails
End Sub