jquery mobile - loading spin wheel keep appearing - jquery-mobile

I am using jquerymobile latest stable version with jquery 1.5
on my application i am using Spring webflow,
On first page of flow i have two links to other pages. See below scenario
Click on link 1
Page B opens with slide transition
click browser back button
First page comes back but with spin wheel which never disappear
How to get rid from this spin wheel?
This is happening in android and iphone

Depending on the version of jQuery Mobile you are using, you may have to upgrade your jQuery Core.
As of the Beta 2, this was stated:
Note that jQuery Mobile 1.0 will require jQuery core 1.6.2 as a
baseline.
From: http://jquerymobile.com/blog/2011/08/03/jquery-mobile-beta-2-released/
UPDATE
According to the Release page for 1.0.1, they use 1.6.4. I believe this is the minimum and 1.0.1 is the latest full release of jQM as of this writing.
http://jquerymobile.com/blog/2012/01/26/jquery-mobile-1-0-1-released/

Related

Jquery-mobile popup zlevel issue on Android 4.0

With Jquery mobile 1.4.2 (latest currently) I've encountered a problem with the popup feature on Android 4.0 (Ice Cream Sandwich).
When displayed the popup appears behind the rest of the page content (can be simulated with a z-index:1 on ui-popup-container)
My solution to this problem was a bit tweaky : add a -webkit-transform:translateZ(0) :
.ui-popup-container {
-webkit-transform:translateZ(0)
}
(I had to shared this, I lost to much time on it !)

I want to make A JQuery 1.4.0 Site look like JQuery 1.32

I have a mobile app for which I need a fix in JQuery Mobile 1.4.0 (specifically the checkbox issue).
However, when I upgrade, it completely changes the style (stylesheets, colors, etc).
Is there a way that I can get the same look using JQuery Mobile 1.4.0?

jQuery Mobile Default Swatches

Let me start off by saying I'm new to jQuery mobile. I've been asked to change to theme of a website and from looking at the jQuery mobile website here there is 5 default swatches that come with it. The only problem is that when I look at the theme file it only has 2 swatches, labeled A and B, but which look more like A and C. Can someone tell me where I can find the additional default swatches?
Thanks for your help.
The guys from jQuery mobile also created the classic theme for 1.4 although they don't actually support it.
You can find it here: http://demos.jquerymobile.com/1.4.0/theme-classic/theme-classic.css
And view the demo here: http://demos.jquerymobile.com/1.4.0/theme-classic/
jQuery Mobile 1.4 has two themes "a" and "b", unlike previous versions.
To upgrade custom themes previously created by ThemeRoller, at the page's top, click on import to upload old themes and then choose 1.4.0 from drop-down Upgrade to version list.

jQueryMobile, Ajax Navigation, and MVC

Following the MVC 4 article on new Mobile Features, I added the NuGet package jQuery.Mobile.MVC. That package installs, among other things, an older version 1.0.3b of jQuery Mobile (the current version is 1.1.0) and creates the following in _Layout.Mobile.cshtml:
$(document).bind("mobileinit", function ()
{
// As of Beta 2, jQuery Mobile's Ajax navigation does not work in all cases (e.g.,
// when navigating from a mobile to a non-mobile page), hence disabling it.
$.mobile.ajaxEnabled = false;
});
I can not find any documentation on what exactly is not working, whether there is a bug filed for it, and what the status of that bug might be. The closest non-ancient similar mention in the jQuery Mobile Forum is
http://forum.jquery.com/topic/ajax-navigation-system-is-causing-problems
In that case, the OP's issue was deemed "by design".
So...
Why might Ajax navigation be turned off out-of-the-box, and is that still a valid concern in jQuery Mobile 1.1.0?
This problem with MVC 4 Beta is that page navigation simply stops working after one navigation if the ajax navigation is not switched off.
This is still a valid concern in jQuery Mobile 1.1.0. I am using MVC 4 beta with jQuery Mobile 1.1.0, and navigation between pages is very unstable if the ajax navigation is not disabled.
Note:
The forum post you refer to is not related to this problem. The post is about values in the page header not being updated, which is per design.
(since this is the only problem for that OP, I guess he is using MVC 3)
About the status of this, related to your question:
(...) whether there is a bug filed for it, and what the status of that bug might be (...)
I don't know... I am also anctious to know this. Hopefully, it will be fixed when MVC 4 is officially released.

What jQuery mobile build is running at http://jquerymobile.com/test?

It seems that the jQuery Mobile test site at http://jquerymobile.com/test is not really running alpha 2 (despite of what is written on the first page).
It definitely shows different (and perhaps less?) bugs than the alpha 2 demo at http://jquerymobile.com/demos/1.0a2/
Does that mean that the test site is running the latest nightly build? If not, what version is that?
As I just found out it is the daily build of jQuery Mobile. Which (as I hoped) makes it the easiest way to stay up to date with the latest development version.
if you view source on the page. and then click the link to the 'js' file (script src="js/" ) this then links to here.
http://jquerymobile.com/test/js/
v 1.4.4?
edit: it looks like the mobile script may be combined with the jQuery script.
search for * jQuery Mobile Framework : widget factory extentions for mobile in the js and that may be the start of it.
cant see a version number though :(

Resources