I developed a sample hybrid app using the Telerik App Builder CLI. The project features an initial home screen loaded from a COMPONENTS folder within the project. Within the Components folder, there is a Home folder containing an index.js and view.html file. I have also added an About folder with its own index.js and view.html.
Both view.html files contain a div element. I am now trying to figure out how to navigate from the home screen to the about screen via JavaScript. I attempted:
var app = new kendo.mobile.Application();
app.navigate("#AboutView");
The "#AboutView" refers to the id of the div in the view.html file located in the About folder. However, this approach does not seem to be working as expected. Can anyone offer any guidance or assistance?