Examples Amended

26. May 2008 – 20:03

I am proud to announce that I have amended examples at http://examples.extjs.eu to show brief explanation of each example.

Enjoy!

Saki


StumbleUpon Toolbar
  1. 4 Responses to “Examples Amended”

  2. That’s awesome integrated example page.
    We appreciate your work, Saki.

    By angelflaree on May 28, 2008

  3. Hello, I recently studying Ext JS, found examples of your site and tried to take the example of communication components, but adapted it to the viewport, but I am not understanding how to achieve the comuniação between components utilzando the viewport.

    app = new Ext.Viewport({
    									layout:\'border\'
    									,items:[
     
    										   {xtype:\'painelmenu\', region:\'west\'},
    										   {xtype:\'tabpanel\', region:\'center\', activeItem:0
    										   		,items:[ title:\'Informações\', anableToScroll:true]
    										   }
    									] 
    								  ,afterRender: function(){}//fim afterRenderFunction
    								  ,onLinkClick: function(){
    									    this.painelmenu = this.items.itemAt(0);
    										 this.tabPanel = this.items.itemAt(1);
     
    										 this.linksPanel.on({
    											 scope:this
    											 ,render:function() {
    												 this.linksPanel.body.on({
    													 scope:this
    													 ,click:this.onLinkClick
    													 ,delegate:\'a.examplelink\'
    													 ,stopEvent:true
    												 });
    											 }
    										 });
    								}//comunicação entre componentes
    				});//fim ant.viewport*/

    I would like to know how to run the communication between components using a viewport, could you help me?

    By anestesya on Jun 23, 2008

  4. @anestesya,

    the best would be if you posted your question to Ext forums. There you can get answers to your questions fastest way.

    If you think that you are addressing your question directly to me, post it in forum either and send me link to it via forum private message.

    Thank you for your interest.

    By Saki on Jun 23, 2008

  5. thanks for the website, i learn a lot from there

    By endy on Jul 10, 2008

Post a Comment