I want to achieve the functionality of opening a page when a certain button is pressed. How should I do this, or how can I add multiple pages in APPstudio
@ding_TL
AppStudio does not support multiple pages, but you can use components like Multiview, the hamburger menu or the tab menu.
The navigation itself needs to be handled in Javascript then:
e.g. set view in hamburger menu
Instance.Hamburger_1.activeViewIndex = 1;
set view in tab menu
Instance.Tab_3.activeTab = TComponents.Component_A.t(“Wizard”);
set view in Multiview
Instance.MultiView_2.activeViewIndex = 1;
OK ThankYou,Your answer helped me
1 Like