Once you are done installing sencha cmd(DOWNLOAD LINK) and unzipping the framework-SDK (DOWNLOAD LINK) then you are all set to start working with Ext JS and creating projects.
Now let's start creating a new project before creating make a directory you need to manage all files into and then fire up command prompt and give this command
sencha -sdk frameworkpath generate app AppName directorypath
change the framework path to the path you extracted all the files and directory path to where you want all your project files to be and then run this command it takes up some to start copying some files into your project directory to get started with all the files that you need is auto generated.
when you are done you can see a couple of files residing in your project directory. now to run your project you need to run this command from your project directory
sencha app watch
You are all set to build up your ideas and start your project now!
So in Ext JS you will have 3 different areas for the universal applications
- Shared app area - application root
- Classic app area - for classic applications templates /classic/src/view/main/
- Modern app area - for modern application templates /modern/src/view/main/
All the applications that you develop on ExtJS are based on MVVC
Model: is where you write all your business login as classes and this will always be written independently on the application's interface.
View: is where you write all your interface code which is where the end user of the application gets interacted with for using the system.
View Controller: is where you write all the connections between the view and the models.
so the entire application is written dividing into the above three categories.

Comments
Post a Comment