extjs4 - Why Menu items are not coming in IE10 using Extjs 4.1? -


i have done application using extjs 4, contains feature menu. menu items showing nicely in browser ie9, firefox, chrome , safari. issue coming when launch same app in ie10 menu not showing menu items. when inspect element menu contains menu items data. can tell me why not displaying in ie10? how showcase menu items data. adding dynamically items menu using reference of items. below code.

refs:[     {          ref: 'region',          selector: 'globalnavigationview > button[name="btnfilter"] > menuitem[text="region"]'     }, 

within funcalling
here regionvalue contains list of items.

this.getregion().menu.removeall();  dynamicregion=new array();         for(var i=0; i<regionvalue.length; i++){             var objsubr=new object();             objsubr.cls= 'filtermenucls';             objsubr.text=regionvalue[i];             dynamicregion.push(objsubr);         }  this.getregion().menu.add(dynamicregion); 

ext js 4.1 not support ie10, 4.2 does.


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -