1. #1
    Sencha User
    Join Date
    Jul 2012
    Posts
    56
    Vote Rating
    0
    Answers
    1
    markgogreen is on a distinguished road

      0  

    Default Unanswered: DataItem / Component question?

    Unanswered: DataItem / Component question?


    I am trying to figure out how to set multiple data items with a single component. In the datamap I have:
    getFavorite: {
    setIsFavorite: 'favorite',
    setClassId: 'class_id'
    }
    then
    applyFavorite: function(config) {
    return Ext.factory(config, myapp.view.classes.components.ListFavorite, this.getFavorite());
    }

    I can get the data into the component, but it seems like I need to have 2 separate update functions:
    updateIsFavorite
    updateClassId

    When I do this, I can dump the variables to the console, with no problem. In the update functions I am doing a this.updateHtml(html);

    Of course, it only returns the last html string. Is there a way to join the 2 html strings in the 2 separate functions? Or is there a way to work with both variables in a single update function??

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,684
    Vote Rating
    435
    Answers
    3111
    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


    Each is going to be separate but you can get the record and the data from the other field.
    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.