hello,
If we add a new component on a page or a container it is placed at the bottom. Is there a way to put it on top.
Example, if we do the following code:
The above code results to:
Component1
Component2
Is there a way to reverse the effect: the newly added component, in this case component2 is on top as follows:
Component2
Component1
The objective is that, the newly added components, such as images w/ label, like posting is always on top and the old ones goes to the bottom.
Thanks.
If we add a new component on a page or a container it is placed at the bottom. Is there a way to put it on top.
Example, if we do the following code:
B4X:
page.cell(1,1).AddComponent("component1")
page.cell(1,1).AddComponent("component2")
The above code results to:
Component1
Component2
Is there a way to reverse the effect: the newly added component, in this case component2 is on top as follows:
Component2
Component1
The objective is that, the newly added components, such as images w/ label, like posting is always on top and the old ones goes to the bottom.
Thanks.