We created the ajax website and are thinking of porting to javascriptMVC. Our site has its own home-made controller that processes ajax calls for html and JS, and the user interface makes extensive use of jQuery UI widgets.
I read a little about javascriptMVC and I liked how the models are processed. especially how easy it is to interact with ajax to read your data. I assume that I have always, although models as JSON objects (structures in a sense), and forgot how powerful methods of adding to models can be.
However, while delving into javascriptMVC, I noticed that the controller takes up most of the functions of the JQuery UI widgets. I hate dropping our already working widgets. What are our options?
Can we only accept the jQueryMX model? is it wise? Should we completely change our controller and widgets and all-in in JavascriptMVC? Any other options?
Speaking of goals - we want to have a structure for future Ajax sites (controller + widgets).
source
share