im new to extjs4 and need some help understanding how the ext.define works please

in fact what i want to do is something similar to the portlets in the portal example, in my application i will need so many objects to add in my different tabs, so in order to orgnise my code and not have just one very big script, i want to define each componant i need in a separate file and then call it in the main script when i need it (i will mainly use the examples so this is why i want to know how ext.define works so i can adapt those examples and make them work the way i want)

hope i was clear

and thank you in advance for ur help

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

Ext.define ( String className, Object data, Function createdFn ) : Ext.Base

Ext.define is used to define a class. Example:

// creates My.computer.NoteBook Class
Ext.define('My.computer.NoteBook', {

     extend:'Ext.panel.Panel'

     ,config: {
      hardware:'Dell'
     ,os:'Linux'
     ,price:500
     }

     ,constructor:function(config) {
      this.initConfig(config);
      return this;
     }
});


// creates instance of My.computer.NoteBook Class
var myComputer = Ext.create('My.computer.NoteBook', {

     hardware:'MacBook Pro'
    ,os:'Mac OS X'
    ,price:1800
});

so, with Ext.define you make a mold, witch you can use later in many cases. You can define width, height, id, css, so later you just call that mold/class. In your case you can define a class for every tab, and then when you make a function to open/create that tab you can say:

    if(existingTab){

        mainPanel.setActiveTab(existingTab);

    }else{

        mainPanel.add(Ext.create('My.computer.NoteBook', 
            {id:tabId}
        )).show();  

    }
...

You can put every Class in your separate .js file, later, on production you will make a class.js with all classes in one minified .js file!

Cheers!

I see, well you can define a class and then say:

items: Ext.create("My.computer.NoteBook",{
        ...
        })
link|improve this answer
thanks a lot, i do understand the first part, didnt really get the second one though, but i can use var panel1 = Ext.create('Ext.app.myPanel',{title : 'panel 1',height:350}); and then call it in my tab like that items : [panel1 ]. i have already managed to do this and defined a panel and simple grid, **my problem is ** declarings vars and functions inside it, like in the grid filtering example how can i do the same in separate script with ext.define? – astrocybernaute Jun 9 '11 at 10:10
2  
You define your view, all its methods and propreties in class, and then just create an instance in items:. You have to make an instance somewhere. – Ingol Jun 9 '11 at 12:02
thanks,i can call it without issues but defining it is the problem.. i get errors,would u take a look at my other post – astrocybernaute Jun 9 '11 at 12:04
Shouldn't your constructor call its parent? Like this: this.__proto__.superclass.constructor.call(this, cfg); – Ken V.H. Feb 29 at 11:47
@KenV.H., in Extjs3 , yes, it should. ;-) – Ingol Feb 29 at 12:30
feedback

Ext JS 4 has a new way to extend... it's call Ext.define and it incorporates Ext.extend, Ext.reg and Ext.ns that we had to do in Ext JS 3 and before into one method call...

Ext.define('com.sencha.MyPanel', {
    extend : 'Ext.panel.Panel',
    alias : 'widget.mypanel',
    ...
    ...
});

Ext.define takes two params, first is the full class name (will act as Ext.ns to create the path and will create the Object) and the config. In the config you specify what class you are extending using the extend config. You set up an XType using the alias config. The alias config is a little different as it has two parts... first part is the type (widget in this case) and then the XType (mypanel).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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