Hello, I have a multi view app:
var mainView = app.views.create('.view-main', {
stackPages:true
});
var categoriesView = app.views.create('#view-categories', {
stackPages:true
});
var discoverView = app.views.create('#view-discover', {
stackPages:true
});
var searchView = app.views.create('#view-search', {
stackPages:true
});
var pagesView = app.views.create('#view-pages', {
stackPages:true
});
In #view-discover (Loaded by Ajax) “tab” I have items. Inside the page of the item I have a modal with details-links too (related items). When I click on an item, there is nothing in the current view, BUT it opens in .view-main . Is there a bug?
App Settings:
var app = new Framework7({
root: '#app',
theme: 'ios',
tapHold: true,
pushState: true,
domCache: true,
swipeout: {
noFollow: true,
removeElements: false,
},
sheet: {
backdrop:true
},
allowDuplicateUrls:true,
init: false,
on: {
pageInit: function (e, page) { etc.