I'm using B4XPages, because I like the cross-platform property.
So, I defined a panel/pane as B4XView. I can go through the views belonging to this panel via a For-Each-Loop:
But this works only for B4A but not for B4J (unknown type: view). What can I do to make it work for B4J, too?
So, I defined a panel/pane as B4XView. I can go through the views belonging to this panel via a For-Each-Loop:
B4X:
For each vw as View in myPanel
...
next