Menu

one view multiple controllers

Help
2007-12-14
2013-04-08
  • Nacho Espinosa

    Nacho Espinosa - 2007-12-14

    Hi Tommi:

    I need to build a view that is controlled by multiple controllers, but this view when is assigned in a new controller, the controller doesn't have to do the reflection again. Only once reflection must be executed.

    If it is possible, How can I do this?

    Greetings Nach_ito

     
    • Tomi Tuomainen

      Tomi Tuomainen - 2007-12-16

      Only one controller per view is supported (as in MVC pattern traditionally).

      If you want to split logic into multiple classes, create one master controller for view and delegate calls to other controller classes manually (by coding).

      Or alternatively, create different view instances for each controller.

      Tomi

       

Log in to post a comment.