1. #1
    Sencha User
    Join Date
    Apr 2012
    Posts
    50
    Vote Rating
    0
    url is on a distinguished road

      0  

    Default Unanswered: How can i add floating component while creating viewport in ext4.1

    Unanswered: How can i add floating component while creating viewport in ext4.1


    How can i add a floating window to the viewport while its getting created. When i'm trying to add with

    viewport.on('add',function(){//my functionality here});it's not working..How can i add???
    Any help??


  2. #2
    Touch Premium Member suzuki1100nz's Avatar
    Join Date
    Apr 2011
    Location
    New Zealand
    Posts
    345
    Vote Rating
    17
    Answers
    15
    suzuki1100nz will become famous soon enough suzuki1100nz will become famous soon enough

      0  

    Default


    2 options
    1/. Define in the viewport items config the window
    See here for adding items to viewport - http://docs.sencha.com/ext-js/4-1/#!/api/Ext.container.Viewport

    2/.add the window to the created viewport afterwards.

    Code:
     var window = Ext.create('Ext.window.Window', {
        title: 'My Window',
        height: 200,
        width: 400
    });
    window.show();
    viewport.add(window);

  3. #3
    Sencha User
    Join Date
    Apr 2012
    Posts
    50
    Vote Rating
    0
    url is on a distinguished road

      0  

    Default Thanx for ur quick responce

    Thanx for ur quick responce


    @Suzuki
    Thanks for your response

Tags for this Thread