Skip to main content

Posts

Showing posts from September, 2017

Extjs - basics on file-system

Hope you created your first project with command prompt and knew some basics of where the application starts loading files and makes up the complete interface and functionalities. if not I recommend you to start from the initial step and come back here. So when you start your project on a desktop it will check for the main file in the classic folder and shows it to the user.   classic > src > view > main > Main.js Now let's start with this Main.js file and understand better about the project. This main file basically has some extended components  Ext.tab.Panel which extends the main page view to have a tab panel view in it. requires has all the other components that are being used in this page as components. Header of the side tab has all the properties such as layout that defines what should be the layout for the header which is aligned to stretchmax, and the title which is being binded which a data feild named name where the name is from ...

ExtJs starting new project - INTRODUCTION

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 ...

ExtJs installation

Firstly you need to download and unzip the ExtJs framework downloaded from sencha website. once you are done then you need to download the sencha cmd -  DOWNLOAD LINK Install sencha cmd and then allow the installation to create a path variable during the installation. now add  "C:\Users\ ::change to your directory name:: \bin\Sencha\Cmd" to PATH variable in user variables. Check whether sencha command is accessible from your command prompt globally You are all set to starting a new project with ExtJs ! :)