1. #1
    Sencha User
    Join Date
    Dec 2011
    Posts
    26
    Vote Rating
    1
    rossmurphy is on a distinguished road

      0  

    Default Answered: Proxy in Model vs. Store

    Answered: Proxy in Model vs. Store


    Does anyone know the difference between using a proxy in a model vs. using a proxy in a store?

    Code:
    Ext.regModel('User', {
        fields: ['id', 'name'],
        hasMany: {model: 'Order', name: 'orders'},
        proxy: {
            type: 'ajax',
            url : 'src/demos/data/userData.json'
        }
    });

  2. Technically there really isn't a difference. The store will look for the proxy config on itself and if none is present look for it on the model. If you want to use Models by themselves (like for forms) then having the proxy on the model will allow you to still use the proxy.

  3. #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


    Technically there really isn't a difference. The store will look for the proxy config on itself and if none is present look for it on the model. If you want to use Models by themselves (like for forms) then having the proxy on the model will allow you to still use the proxy.
    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.

  4. #3
    Sencha User
    Join Date
    Dec 2011
    Posts
    26
    Vote Rating
    1
    rossmurphy is on a distinguished road

      0  

    Default


    It would be nice if the documentation explained things like this

  5. #4
    Sencha Premium Member intellix's Avatar
    Join Date
    Mar 2012
    Location
    UK + Malta
    Posts
    262
    Vote Rating
    18
    Answers
    5
    intellix will become famous soon enough

      0  

    Default


    Quote Originally Posted by rossmurphy View Post
    It would be nice if the documentation explained things like this
    Seconded

Tags for this Thread