I want to create an application with multiple components to separate each applications.
My Project Structure
My Main Page
How can I change the application when clicking on menu?
I want to create an application with multiple components to separate each applications.
How can I change the application when clicking on menu?
You can always dynamically load components like follows:
var oComponent = new sap.ui.core.ComponentContainer("componentID", {
name: "apps.ToolsNamingFileGenerator"
});
Just place it in your UI wherever you want. The Component should inherit context and models from the Component it is instantiated from.
BR Chris