Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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);
});
share|improve this question
1  
being just a way of programming theoretically it is possible. Can you please state the problem like what your are actually trying to do and some code – Parv Sharma Dec 27 '12 at 8:00
@ParvSharma see the exmaple how I am manipulating UI. – shiplu.mokadd.im Dec 27 '12 at 8:14
As long as I work with Architect (1year) I haven't figured out a way to do it. I hope this is possible somehow in later versions. Btw typo in addListener(). – A1rPun Dec 28 '12 at 10:25
I got way to to it. Not using mvc now.basically all my code is in app.js. @A1rPun I used that spelling in my code. Thanks for letting me know. I'll change it. – shiplu.mokadd.im Dec 28 '12 at 12:53
Great! So you are defining everything in app.js? – A1rPun Dec 28 '12 at 13:11

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.