Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nelstrom/Sencha-Touch-forms-demo
A demonstration of building a simple CRUD application using Sencha Touch's MVC architecture.
https://github.com/nelstrom/Sencha-Touch-forms-demo
Last synced: about 1 month ago
JSON representation
A demonstration of building a simple CRUD application using Sencha Touch's MVC architecture.
- Host: GitHub
- URL: https://github.com/nelstrom/Sencha-Touch-forms-demo
- Owner: nelstrom
- Created: 2011-07-05T18:14:48.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-04-13T12:16:57.000Z (over 12 years ago)
- Last Synced: 2023-04-11T04:52:14.313Z (over 1 year ago)
- Language: JavaScript
- Homepage: http://sencha-forms.heroku.com/
- Size: 471 KB
- Stars: 22
- Watchers: 2
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome - Sencha-Touch-forms-demo - A demonstration of building a simple CRUD application using Sencha Touch's MVC architecture. (etc)
- awesome - Sencha-Touch-forms-demo - A demonstration of building a simple CRUD application using Sencha Touch's MVC architecture. (etc)
README
## THIS REPOSITORY HAS MOVED
Please visit https://github.com/senchalearn/Forms-demo for the most up to date version.
I'll keep this repository around here for the sake of posterity.
## Using this repository to follow the screencast
First, you'll have to clone this repository:
git clone git://github.com/nelstrom/Sencha-Touch-forms-demo.git
Change into the directory:
cd Sencha-Touch-forms-demo
By default, the git clone command will only create the master branch locally. If you want to study the code at each checkpoint, you will have to fetch each of the other branches. You can do so by running the following:
git co -b 00_blank_slate origin/00_blank_slate
git co -b 01_user_interface origin/01_user_interface
git co -b 02_create_new_form origin/02_create_new_form
git co -b 03_implement_save_action origin/03_implement_save_action
git co -b 04_create_edit_form origin/04_create_edit_form
git co -b 05_validate_form_fields origin/05_validate_form_fields
git co -b 06_implement_delete_action origin/06_implement_delete_action