Threaded View
-
14 Jul 2009 9:10 AM #1
Unanswered: ext-core equiv of Ext.util.CSS.swapStyleSheet()
Unanswered: ext-core equiv of Ext.util.CSS.swapStyleSheet()
How would I best emulate the ExtJS swapStyleSheet() function using only ext-core.js?
Code:var origStyle = true; Ext.get('swapper').on('click', function(){ if (origStyle){ Ext.util.CSS.swapStyleSheet('ss', '/lib/css/sec.css'); } else { Ext.util.CSS.swapStyleSheet('ss', '/lib/css/light.css'); } origStyle = !origStyle; })


Reply With Quote