Hi,
we develope an application with Kendo mobile and we use the router for navigation :
router.navigate("viewPath");
In application there is a situation when we need to submit a saving dialog to navigate to other view. Sometimes in this case occures a problem that the application just flashes like it was navigated to the next view (also in code it is acting like that) but the previous view is freezed on the top.
For example you have an app with views:
some home page -> products view -> product detail
- I navigate from home page to products view and to specific product - when I want to save a product detail a dialog is shown - I submit the saving and it should go back to products view. But it doesnt. When I use a native android back button it flashes and seems to navigate to products view for a second but still the product detail is freezed on the window after that (if you press native back buttons more times it asks if you want to close the app like you were on the home page).
Is it possible to solve the navigation some other way to avoid this problem?
Thank you in advance.