1. #1
    Sencha User
    Join Date
    Nov 2011
    Location
    Mumbai , India
    Posts
    36
    Vote Rating
    0
    Answers
    1
    anaP is on a distinguished road

      0  

    Default Unanswered: more than one instances of Controller

    Unanswered: more than one instances of Controller


    Hi
    I have created a custom component which takes a json and creates a view.that component is a controller which I export and import as a behavior in toolbox.
    I want to use that Custom component more than once in my view but controller is a singleton class then is there any way to create multiple instances of my view?
    Thanks.

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    34,107
    Vote Rating
    453
    Answers
    3157
    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 mitchellsimoens has much to be proud of

      0  

    Default


    You just need to rethink how you are doing it. A controller can only be created once but views can be created multiple times.
    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
    Mumbai , India
    Posts
    36
    Vote Rating
    0
    Answers
    1
    anaP is on a distinguished road

      0  

    Default


    I know I can create my custom component as view but there are some more things which I want to do while creating a comp like I want to create store and model dynamically for that view which I can achieve using controller.