1. #1
    Sencha User
    Join Date
    Nov 2011
    Location
    India
    Posts
    25
    Vote Rating
    0
    m4manas is on a distinguished road

      0  

    Default Setting html inside a panel from a function

    Setting html inside a panel from a function


    <code>
    var panel = new Ext.form.FormPanel({

    xtype: 'fieldset',
    id: 'tweetFieldset',
    title: 'Tweet Reply',
    items:[{
    items: [{
    id: 'tweetMessage',
    xtype: 'panel',
    html: "tweet"
    }, {
    xtype: 'textareafield',
    name: 'tweetReply',
    }]
    }, {
    items: [{
    id: 'replyTweetButton',
    xtype: 'button',
    width:'150',
    ui: 'confirm-round',
    text: 'Reply',
    handler: this.onTweetReply,
    scope: this
    }]
    }]

    });
    </code>

    I want to change the html value of the tweetMessage panel from a function. I m trying to do
    Ext.getCmp('tweet').setValue('new tweet');
    But it does not works.

    Any suggestions

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,599
    Vote Rating
    435
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    What field has the id 'tweet'? If you want to put html inside a panel then use update() on the panel.
    Mitchell Simoens @SenchaMitch
    Sencha Inc, Senior Forum Manager
    ________________
    http://www.JSONPLint.com - Source to lint your JSONP!

    Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
    https://github.com/mitchellsimoens

    Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/

    Need more help with your app? Hire Sencha Services services@sencha.com

    Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!

    When posting code, please use BBCode's CODE tags.

  3. #3
    Sencha User
    Join Date
    Nov 2011
    Location
    India
    Posts
    25
    Vote Rating
    0
    m4manas is on a distinguished road

      0  

    Default


    Thanks, it works.

    Sencha Rocks!!