Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am planning to create a mobile or rather a tablet version of my existing web app. The devices supported would be iPad, Xoom (android).

I am not sure which JS library to use jQuery Mobile Vs Sencha Touch

My page would contain srandard componenrs like carousel, tab bars, etc

How should I decide which library to go for ? As of now, I am comfortable with jQuery syntax..so that is inclining me to think towards jQuery mobile. But guess that would be a wrong way to shortlist the JS library..

Please provide as much suggestions as you can.

share|improve this question
Why not do a bit of research and see which has the features you need and the current support for the devices you're targeting? I'm pretty sure both would be well documented on their official websites. – Marko Jun 19 '11 at 7:40
Thx..well it is not going to be just about features..like the tablet/mobile OS is constantly evolving..So i have to be sure whichever library i go for, my app would not break in future OS releases.. – testndtv Jun 19 '11 at 7:48

closed as not constructive by casperOne Feb 28 '12 at 18:27

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

up vote 21 down vote accepted

Sencha Touch is the most obvious option here, jQuery Mobile is still no where near the quality of the Sencha Touch library.. although jQuery mobile degrades a lot more gracefully on non iOS and Android devices.

Seeing as you are aiming to support only Android and iOS then this shouldn't be a problem (Sencha Touch also supports BlackBerry OS 6 on the Torch 9800 handset too).

I found the responsiveness of jQuery Mobile to be supbar, and there are still a lot of rendering issues and kinks they need to iron out. I wouldn't expect a stable release until early 2012 at best.

You will find Sencha Touch to provide a more "native app" experience too, with a lot of great learning resources that you won't find for jQuery Mobile yet.

One final note, Sencha Touch supports a more MVC style application design (should you choose to go that way with your app), whereas jQuery mobile will simply be a load of markup and a load of jQuery script converting your HTML elements into touch friendly interface components.

TL;DR - Sencha Touch is the more complete package providing you want to put in the time.

share|improve this answer
   
Thx a lot..the Sencha touch demos i have seen are mostly very basic..My question is if I want to create a full fledged web app with java/jsp, how easily will it integrate..Even though i understand it is only UI layer, but still at times there is always an overlap..So can Sencha touch still be used. – testndtv Jun 19 '11 at 12:02
Ofc this is possible, 95% of your jsp code would be used for ajax requests, so sending a response in JSON format for Sencha Touch to read is all that it needs, you could use virtually any server-side stack with Sencha Touch – Jaitsu Jun 19 '11 at 12:46
Oh ok..cool..can i get source code/example where JSP/JSON AJAX response is used with Sencha Touch..thx.. – testndtv Jun 19 '11 at 16:39

The jQuery Mobile library is still in Alpha development.

I was at a conference in May, and the jQuery Touch developers were among the presenters. They even said that it was still in heavy development and probably not ready for prime-time use yet.

share|improve this answer
Ok..thx a lot..So would that mean I should go for Sencha touch? – testndtv Jun 19 '11 at 7:49
It seems to be the more mature library of the two at this time. Our shop is using it on a couple of projects right now and it seems really solid. – Scottie Jun 19 '11 at 7:50
Sounds good...would it be possible to give ref url for where u are using it? – testndtv Jun 19 '11 at 7:51
Still in development at the moment, but I can guarantee it's for a client you've heard of. ;) – Scottie Jun 19 '11 at 7:52
Oh ok..np..i understand.. – testndtv Jun 19 '11 at 8:26
show 2 more comments

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