I am building a single page PhoneGap application, I am using Angular Kendo.
For app navigation I am loading multiple html pages dynamical as per user operations.
I have a Kendo back button on every page to navigate to previous page as below:
<kendo-mobile-header >
<kendo-mobile-nav-bar style="color:black;">
<kendo-view-title style="color:white;">Test</kendo-view-title>
<kendo-mobile-back-button id="back-button" style="color:white;" k-align="'left'">Back</kendo-mobile-back-button>
<kendo-mobile-button style="color:white;" k-align="'right'" href="Test.html">Next</kendo-mobile-button>
</kendo-mobile-nav-bar>
</kendo-mobile-header>
But I am not able to navigate to previous page when I click on back button, also I am not getting any error in console logs.
How can I debug this issue?