FUEL CMS User Guide : Version 0.9.3


jQX Framework

jQX is a small javascript MVC framework. Some of the benefits of using JQX instead of simply including javascript files:

jqx.load('plugin', 'date');

fuel.controller.MyModuleController = jqx.createController(fuel.controller.BaseFuelController, {
	
	init: function(initObj){
		this._super(initObj);
	},
	
	myMethod : function(){
		
	}
	....
}

For more examples, look inside the fuel modules js/fuel/controller folder