Categories
-
Recent Posts
Archives
Meta
While I’m working on the 4th part of the Creating a Sencha Touch MVC application from scratch series, I’ve decided to write this little article because the feedback received indicated that this would be useful for some of you. Many Sencha Touch developers tried or want to use the TabPanel component in a MVC structured …
In this article we will continue to build our Sencha Touch MVC app we’ve started in part 1 and part 2. This time we will explore different ways to call a controller action. A controller action can be called in three ways: Using the route as a value for the href attribute of an anchor …
As the title says we will continue to build our Sencha Touch MVC app we’ve started in part 1. In this part we will create a controller and two views and learn how to use them. Let’s modify our current project structure by adding some folders: Creating a controller. In app/controllers create a file named …
Introduction Sencha Touch is an OOP JavaScript framework that makes it easy to build mobile web applications that look and feel native on iPhone, Android, and BlackBerry touch devices. To find more you can take a look at Sencha Touch website. If you haven’t worked with JavaScript in an object-oriented way, I think you’ll find …