maneljn
17 Jun 2012, 11:51 PM
i try this
var lanzador = Ext.globalApp.getBundle(registro.data.apl_bundle).getView('programa.lanzador').create();
This is an mvc controller (Ext.globalApp.getBundle(registro.data.apl_bundle))
In IE9 the getView returns null, but in firefox it works fine.
I cannot understand why.
The only solution i found, but not funny (emulate ie8)
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" >
var lanzador = Ext.globalApp.getBundle(registro.data.apl_bundle).getView('programa.lanzador').create();
This is an mvc controller (Ext.globalApp.getBundle(registro.data.apl_bundle))
In IE9 the getView returns null, but in firefox it works fine.
I cannot understand why.
The only solution i found, but not funny (emulate ie8)
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" >