I wonder if I were to develop a mobile Web app (now, in two weeks, or in a month), which one should I go for? Which one would you mobile Web developers go for?

If jQM 1.0 were officially released today, I would most likely embrace it (as long as it actually delivers what it promises). Now that it is in alpha, I wonder whether it is worth to jump into it yet for a commercial grade project? Would Sencha Touch be a better alternative?

link|improve this question

Duplicate of: stackoverflow.com/questions/2086863/… – Michael Mullany Mar 16 '11 at 17:40
It's not exactly a duplicate, but thanks for the pointer. – William Niu Mar 17 '11 at 0:26
feedback

14 Answers

up vote 15 down vote accepted

I've been using jQuery mobile for a while now. It works well under Blackberry 6, iPhone, and Android.

I wrote an article about it here: jQuery mobile alpha

Though it's alpha, they are showing good progress. I've been looking into their development in github, seems like there's going to be cool stuff by early 2011.

UPDATE 2011-12-01 jQuery Mobile relased version 1.0, finally out of alpha. Read more about it here: http://jquerymobile.com/blog/2011/11/16/announcing-jquery-mobile-1-0/

link|improve this answer
7  
just to add to this, I've also been using jquery mobile for a while (2 apps). It is pretty awesome. However, on my android HTC magic, it does not run nearly as smoothly as sencha touch. This makes me suspect that on slower devices, jquery mobile isn't quite ready yet. The difference is big and I am in the process of switching to sencha – i8abug Jun 7 '11 at 14:12
1  
Agree! JQM gives poor performances comparing to Sencha. It's much more complicated to study, but worth every second of it. – NeoSwf Nov 24 '11 at 19:47
1  
But is it lighter than JQM? – Olivier Pons Jan 28 at 9:37
Yes Olivier, in my experience ST2 is much lighter, feature rich and robust than JQM. – Ricardo Apr 20 at 10:43
feedback

Sencha Touch is an application framework (you create your interface programmatically through Javascript) while jQuery Mobile is more of a mobile enhancement library (you write regular HTML for your content, then add jQuery mobile for transitions/animations). jQuery Mobile has an easier learning curve, but Sencha Touch can better simulate "native" apps.

link|improve this answer
feedback

The first question you need to ask yourself is what is the purpose of the application. If you want to release an application for sales on one of the retail outlets (iTunes, Andoid App store), or you need access to device specific functions that are not accessible via local APIs yet (accelerometer, camera, contacts, etc) then you should be thinking Native or one of the hybrid solutions (Appcelerator, PhoneGap, etc.).

If your audience is going to be more in the "mobile web" space, such as a mobile version of a corporate web desktop site, or intranet web application port, then you should be looking at Sencha Touch and jQuery Mobile. The decision between those two is really going to be based on you development experience and and what you feel more comfortable with. Sencha Touch is a VERY robust platform that has a Desktop (ExtJS) and mobile (Sencha Touch) that mirror each other so knowing one pretty much allows you to get up and running with the other. Also, Sencha has moved to an MVC model on the client which really helps to organize client side code and make it much more congruent with server-side development platforms.

The post above is actually incorrect, using the MVC pattern on the client combined with the historyUrl on your dispatch commands gives you the ability to use the browser back and forward buttons of the browser, so that is not exclusive to jQuery Mobile. Also, the Sencha Team's suite of products includes a Designer application that provides Designer which is a WYSIWYG editor that allows for the drag and drog creation of UIs. This company's roadmap has them in the process of updating the Designer app to allow for the drag and drop design of Touch mobile screens and application that will function with the MVC pattern. They are also getting ready to release a new version of the Sencha Command tool that will automatically generate entire MVC application structures for you in a matter of minutes, which you can then add the necessary custom code to round out your application. Lastly, the new SASS theming capabilities allow designers to use CSS3 and SASS config filesm along with variables and Mixins to generate cross-browser CSS style sheets for your application.

So, the decision of which way to go for the mobile web development question comes down to how comfortable you are with object oriented javascript. If you are very comfortable with it, then Sencha Touch is the way to go as it very extensible class system built into the core engine that can be customized to your hearts content...but if you have minimal experience with JS and you want the server to deliver your UI and don't mind seeing the Address bar drop down to move between pages (less web 2.0 looking), then jQueryMobile is the way to go.

It's pretty obvious that I am bais to Sencha Touch due to it's well thought out class structure, extensibility, very active user community, web/mobile continuity, and constant improvement to the core framework and new tools that simplify development efforts. And not to mention that the Touch platform in more mature as jQM has not reached production mode yet.

link|improve this answer
1  
One thing about Sencha Touch that kept me away is its large size (>350kb for the main sencha-touch.js, minified not compressed). I don't know if it will requires more files in dev. IMO, until bandwidth and speed is less of a bottleneck for mobile devices, this size is not acceptable. – William Niu May 4 '11 at 0:24
2  
Well, the thought process is to deliver the application framework up front, then make XHR requests to retrieve much smaller pieces of info like XML or JSON data from the server. So while you are correct, the initial load times are a bit larger than JQM, you make up for it during the ajax page requests, rather than having to go to the server for full pages for many of the pages in other frameworks. So long as you can present the user with a sufficient loading indicator, most are more than willing to wait for the benefits of superior intra-app page performance and user interface widgets. – user576929 May 4 '11 at 3:02
1  
@user576929: Thanks for the explanation! You brought up a valid point. If this web app can be perceived as a replacement of a native app by users, the download size is actually tiny. The assumption, though, is that the user needs to have that mindset. I wonder when this assumption can come true. – William Niu May 4 '11 at 4:44
feedback

Sencha touch has lived longer than jquerymobile but I found that jquerymobile handles device back button much better than SenchaTouch. I always consider back/history button handling is important in my apps, so I prefer jquerymobile. I always consider myself a JavaScript programmer, but I like the fact that I rarely need to to type any JavaScript code when I use jquerymobile. jquerymobile design is brilliant IMHO.

link|improve this answer
1  
That's changed in Sencha Touch 2, we now have history support built into the framework (I'm the author...). We have a guide to it in our vastly expanded documentation - see docs.sencha.com/touch/2-0/#!/guide/history_support – Ed Spencer Feb 3 at 8:33
feedback

I am also in favor of sencha, JQM is really slow and failed to give an impression of an native app.

  • Praveen
link|improve this answer
feedback

If you're going to make a mobile version of a website, I am going to use jQuery Mobile. If you're going to make a “native” mobile application, I will be more likely use Sencha Touch.

http://tysonlloydcadenhead.com/blog/jquery-mobile-vs-sencha-touch

link|improve this answer
feedback

why limit yourself...

Look into PhoneGap and Titanium Appcelerator

the make the comparison based on what you are trying to accomplish. I know Sencha Touch has a licensing fee and like you said jQM is not officially released yet.

This is a great time to be in the mobile space because there are so many viable options

link|improve this answer
2  
I am reluctant to go for frameworks like PhoneGap because of the extra layer of abstraction. I may depend on the PhoneGap team to keep their framework to be up-to-date when the native SDKs change. Don't you think this is a potential problem? – William Niu Nov 1 '10 at 4:50
2  
Here's a scenario for you: when the front-facing camera was added to iPhone4. I think PhoneGap probably needed to update their API to accommodate that change. Who knows what else is set to come in the future, maybe thermal detection? That's only the hardware level; Apple sometimes make changes to the firmware level. – William Niu Nov 2 '10 at 6:21
2  
@William if that feature was critical to you, just download the code from github, add the functionality and move on... It still would be less code then writing the whole thing yourself. – Aaron Saunders Nov 2 '10 at 11:46
2  
Sencha Touch is now free (sencha.com/blog/2010/11/15/sencha-touch-1-0-ships-now-free). – chrish Dec 8 '10 at 15:04
6  
PhoneGap is actually an orthogonal concern to the JQM/ST issue. PhoneGap gives you a native shell in which to write your HTML/JS/CSS content - in it you can use your JS framework of choice, be it JQM or ST. – ob1 Feb 7 '11 at 16:27
show 6 more comments
feedback

I was faced with the same choice about half a year ago, then went for jQTouch instead of Sencha Touch, which I found to be extremely Javascript centered. I'm currently working on a port of that same project to jQuery Mobile and I think the transition will be much smoother than it would have been with a Sencha Touch project.

link|improve this answer
feedback

If you know basic PHP I strongly suggest jqmphp.com. Up and running in less than 3 days a whole online mobile based site to order food!

link|improve this answer
feedback

Don't forget that there is also Dojo Toolkit Mobile. It looks nice, at least at first look and it is built on top of the proven and solid Dojo Toolkit core. http://dojotoolkit.org/features/mobile. The Dojo Toolkit don't get too much audience recently but it looks like they made a lot of progress from the times it was a bit heavy, I think it is worth looking at it.

link|improve this answer
feedback

I think jQuery mobile is easier to learn and seems to be very promising. Version 1.0 is not yet available, but its going to be a good product. I find it very attractive because it is based on jQuery - simplicity is the motto

link|improve this answer
We've put a huge amount of effort into improving Sencha Touch's learning materials. We've added 20 guides from intro to deployment along with a huge amount more class documentation and a vastly upgraded documentation center app. Hope you'll take a look at what we've done in 2.x: That's changed in Sencha Touch 2, we now have history support built into the framework (I'm the author...). We have a guide to it in our vastly expanded documentation - see docs.sencha.com/touch/2-0 – Ed Spencer Feb 3 at 8:38
feedback

Sencha Touch looks great but it is difficult to use. The Sencha support forums offer minimal support. Sencha Touch 2.x is still in alpha is quite buggy

link|improve this answer
1  
Actually I think we have a pretty vibrant forum community. So far there are almost 10,000 posts just for Sencha Touch 2, significantly more than jqm. Also, specially right now, the team is extremely engaged with all of the Touch 2 forums. – Ed Spencer Feb 3 at 8:36
feedback

Sencha touch will be the best option is you are just starting because it is well documented and it has a community support. Also, with phonegap, you spend more time on the development and less on things about other mobile platforms. Phonegap will build the application for you , once you upload it to the builder .

link|improve this answer
feedback

I've built a nice production app in a few days using Sencha Touch 2.0 and it's delivering as documented. And, it's FAST. There might be some bugs, but, when I've run into one (which, is rarely), there seemed to be many ways to approach a solution so that it's really not that relevant.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.