I found a great tutorial on creating an MVC App from Scratch using Sencha Touch V1.1 but unfortunately it isn't all that applicable to Sencha Touch V2. I want to learn the new/right way to build an MVC app moving forward with their latest framework.

I'm wondering if anyone knows of a good tutorial for building an MVC App using Sencha Touch V2.

Here's a list of places I've already looked.

  • Official Docs
    • Videos are outdated
    • Examples don't show source snippets, you have to "View Source" and try to wade through the compressed/minified versions of the library.
    • Documentation doesn't describe MVC at all (just try searching for "mvc" in their search field... you'll come up empty handed)
  • Google Advanced Search
    • I tried narrowing down the results by looking for "Sencha Touch" "mvc" where the articles were posted in the last week.
  • And of course right here on StackOverflow.
    • looks like as of this post, I'm the only person posting with that tag

Thanks in advance.

link|improve this question

Introduction to Sencha Touch: blog.chariotsolutions.com/2012/01/… This example uses the Developer Preview of Sencha Touch 2.0. – larswittenberg Jan 27 at 9:56
Here's my MVC tutorial in another SO thread: stackoverflow.com/questions/9229849/… – Grgur Feb 12 at 7:54
2  
Funny, this question was closed as not constructive yet it's the highest voted sencha-touch-2 question. – M-x Apr 16 at 16:25
feedback

closed as not constructive by casperOne Apr 14 at 13:49

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

5 Answers

up vote 8 down vote accepted

I have a complete starter-project for Touch 2 using the MVC pattern on github here:

https://github.com/FrancisShanahan/SenchaTouch2MVCHelloworld

You can read my blog post about it here:

http://francisshanahan.com/index.php/2011/sencha-touch-2-0-mvc-in-5-minutes-or-less/

Hope this helps you get started, -fs

link|improve this answer
If you're having trouble getting that example working move the view definition (views: ['Home', 'SimpleList'],) from the controller to the app.js. – SteveCav Mar 9 at 3:17
feedback

I was also looking for such kind of a tutorial and I found this example to be very helpful for kickstarting my own senchatouch 2.0 app: https://github.com/kawanoshinobu/SenchaTouch2-simple-CRUD-sample

It's in python and the author uses google app engine to run it, but it's pretty self-explanatory how you can run a copy locally using any other backend :) Hope this helps

link|improve this answer
Great. First Sencha Touch 2 app I've seen running on Google Appengine. – gyaresu Jan 18 at 7:28
feedback

All Sencha products (Sencha Touch, Ext JS) are expected to follow the new MVC architecture. You should start with understand it. Here is my resource list:

  1. MVC Application Architecture
  2. Getting Started with Touch
  3. Class System, Components etc..
  4. Examples.. but I don't think there are MVC examples for now...
link|improve this answer
Yes that's exactly it. In my question I stated that I've already looked through the Getting Started with Touch docs, but there is nothing with MVC, and unfortunately a lot of the examples are still on 1.1 (which is odd that they're in the 2.0 documentation) – Chase Florell Oct 19 '11 at 15:33
its still in developer preview.. I think we will see more documentation and examples by the time of release.. :) – Abdel Olakara Oct 19 '11 at 15:50
Yep, I absolutely get that... just thought there might be someone out there already developing tutorials. I'll roll with what I can find for now. Thanks. – Chase Florell Oct 19 '11 at 16:31
the Ext JS stuff is good for me to look at. Didn't know they were moving towards unifying the frameworks. – Chase Florell Oct 19 '11 at 16:32
feedback

Start with http://docs.sencha.com/touch/2-0/#!/guide/getting_started and examples/getting_started folder of the Sencha Touch 2.0 SDK download

link|improve this answer
Not sure if you noticed, but I already looked through there. Doing a search brings up nothing "MVC" related, and lots of the examples in there are still on 1.1 – Chase Florell Oct 19 '11 at 15:33
feedback

I found this link and site very useful - http://miamicoder.com/category/tutorials/sencha-touch-tutorials/

link|improve this answer
Yes, very helpful for V1.1 information. – Chase Florell Oct 19 '11 at 22:28
feedback

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