Search code examples
javascriptmodel-view-controllercontrollerjavascriptmvc

call controller in JavascriptMVC


I have two controllers, init:

jQuery.Controller.extend('App.Controllers.Init', {  
    onDocument: true  

},{  
    load: function() {  
        //call App.Controllers.Tabs on $('#tabs')  
        //it is not that easy as $('#tabs').tabs() -> Throws: Object doesn't support this property or method  
    }
});

And tabs:

jQuery.Controller.extend('App.Controllers.Tabs,...

How to call tabs in init?


Solution

  • You need to:
    $('#tabs').app_tabs()
    Just cut the "controller" word out. Make all letters lowercase, and change dots "." to "_"

    One More Example:
    controller definition:
    jQuery.Controller.extend('Appname.Controllers.Controllername',...
    call it:
    $('#some_id').appname_controllername();