Hello to everyone,
i'm building an app using jquery mobile and cant figure out a problem that i'm facing.
I have an index.html page that shows a grid menu when my app starts.
Each item is linkable and all go to another page(default.html).
The default.html is a dynamic page. Calls an external createlist.js file, that creates a listview with data from sqlite database.
When from grid menu I call the default.html with this code
<a href="defaultpage.html" rel="external" onclick="sessionStorage.ParameterName='someID'"><IMG.....></a>
everything is ok.
Default.html is loading correctly and i can see my listview that createlist.js file generates.
My problem is that if a want to add transition and use this code
<a href="defaultpage.html" data-transition="slide" onclick="sessionStorage.ParameterName='someID'"><IMG.....></a>
i have the transition correclty but my page is empty.
My listview doesnt appear at all.
Is there a way to call a dynamic html page from index.html with transition on call???
Thank you in advance.