Is it possible to write application with sencha touch 2 without MVC?
My current application has an internal lib that I use to get data from. Currently on the desktop version I use ExtJS. I register some callback to the application lib. These callbacks are called and UI is updated automatically. I dind't use MVC in ExtJS. Before registering the callback ExtJS first creates the UI.
Now If I use ST2 for mobile app, Can I use same technique? I dont want to use MVC in sencha touch. I just want to replace the ExtJS code with ST2. Add some callbacks to the application library. Can I do it?
I am asking this question because whenever I search in the Internet about ST2 I see all the tutorials are focusing MVC. No tutorials can be found without MVC.
If this is possible is there anything I should watch out for?
Here is what I do now
var cm = CIM.init();
cm.addListenner('online', function(buddy){
var ontree=Ext.getCmp(...);
var offtree=Ext.getCmp(...);
// remove a treenode from offline tree
// add tree node to online tree
});
cm.addListenner('offline', function(buddy){
// just the reverse of online callback.
});
cm.addListenner('message', function(buddy, message){
var noti=Ext.getCmp(...);
// add a notification to the notification bar
});
cm.addListenner('addrequest', function(reqObj){
// prompt if current use want to add this new buddy
// if yes add it to current list
var buddy = cm.addBuddy(reqObj);
});