I am trying to find a workaround for refreshing nested lists with version 1.1 of jquery Mobile which currently leaves you with a blank page.
I know one existing solution is to enable pushState but that sends you back to the root of the list and screws with the history state on your next nested list view.
The solution I came up with below is not pretty but works on iOS and newer android.
$(document).bind("mobileinit", function(){
var urlEx = '#&ui-page=5-0'; //ending of nested list url
if (window.location.href.indexOf(urlEx) != -1){
history.replaceState("", "0", "index.php");
setTimeout("window.location.href='https://FULLURL#/FULLURL&ui-page=5-0'",100);
}
window.history.pushState("", "0", "index.php");
});
I realize that pushState and replaceState aren't supported by every browser and that I could try to use:
window.location.href = window.location.href.substring(0,window.location.href.indexOf('#'));
instead but it becomes much choppier of a user experience.
I'm hoping someone could shed some light on what could be done better or how it can be done better/more reliably.
.refresh('listview')on the object. See: stackoverflow.com/questions/7083507/… – Calavoow Sep 28 '12 at 14:17