Hybrid View
-
27 Jul 2012 4:31 PM #1
Greatly reduce the size of the DOM
Greatly reduce the size of the DOM
Hey Guys
Its late (02:15) here and I am playing around with a big Sencha Touch 2 app (Huge DOM) and I have come up with a concept that greatly reduced the size of my DOM.
The contents of my "main" deck now only contain stuff that the user is looking at. Everything seems to be working as usual. Like I said "its late".
Try it out and see what you think. I am going to sleep now. ;-)
I will test performance on my iPhone in the morning. (App is packaged in Cordova/PhoneGap)
DOM.jpgCode:Ext.define('godtur.view.SmartContainer',{ extend: 'Ext.Container', xtype: 'smartcontainer', config: { layout: 'fit', listeners: { show: function(cmp){ if(!cmp.items.items[0] && cmp.v){ cmp.add(cmp.v); cmp.v.show(); }else{ cmp.items.items[0].show(); } }, hide: function(cmp){ var v = cmp.items.items[0]; if(v){ cmp.v = v; cmp.v.hide(); cmp.removeAll(false,false); } } } } }); Ext.define("godtur.view.Main", { extend: 'Ext.Container', xtype: 'main', config: { id: 'mainDeck', layout: { type: 'card', animation: {type: 'fade'} }, items: [{ //xtype: 'home' xtype: 'smartcontainer', items: [{xtype: 'home'}] },{ //xtype: 'info' xtype: 'smartcontainer', items: [{xtype: 'info'}] },{ //xtype: 'mapcontrols' xtype: 'smartcontainer', items: [{xtype: 'mapcontrols'}] },{ //xtype: 'mypagedeck' xtype: 'smartcontainer', items: [{xtype: 'mypagedeck'}] },{ //xtype: 'searchdeck' xtype: 'smartcontainer', items: [{xtype: 'searchdeck'}] }] } });Simon Flack
CEO and UX Designer
WhiteFox AS, Norway
Web: www.whitefox.no
Facebook: www.facebook.com/WhiteFoxAS
Twitter: @WhiteFoxAS
-
28 Jul 2012 12:40 AM #2
I compiled xcode project and tested on my iPhone 4 this morning. It does seem to run faster.
App seems to be running correctly also.
But I will need to do more testing to be 100% certain.Simon Flack
CEO and UX Designer
WhiteFox AS, Norway
Web: www.whitefox.no
Facebook: www.facebook.com/WhiteFoxAS
Twitter: @WhiteFoxAS
-
30 Jul 2012 1:42 AM #3
-
30 Jul 2012 2:03 AM #4Simon Flack
CEO and UX Designer
WhiteFox AS, Norway
Web: www.whitefox.no
Facebook: www.facebook.com/WhiteFoxAS
Twitter: @WhiteFoxAS
-
5 Aug 2012 8:29 AM #5
Thanks...
Thanks...
Thanks a lot for this Simon, would it be possible to see a really basic example in a tabpanel setup this way?
I am really interested in reducing the DOM size and have tried Mitchell's optimised tab but I am getting blank panels and I can't work out why. Would be great if someone could post an example to help the community :-)
Thanks
-
5 Aug 2012 9:42 AM #6
If you are using a tabpanel try Mitch's plugin.
https://github.com/mitchellsimoens/Ux.tab.OptimizedTabSimon Flack
CEO and UX Designer
WhiteFox AS, Norway
Web: www.whitefox.no
Facebook: www.facebook.com/WhiteFoxAS
Twitter: @WhiteFoxAS


Reply With Quote