javascript - ExtJS 4.2 Grid Header doesn't show correctly in IE -
the purpose of following code popup window contains 2 column grid. works fine in safari , firefox fails show in ie 8 , ie 10 (which our customers insist on using). in ie, 3rd hidden column not hidden, cover 1st column instead. i use default css of extjs 4.2, matter? <link rel="stylesheet" type="text/css" href="js/extjs-4.2.1.883/resources/css/ext-all.css"> and here javascript: ext.define('base.lov_4_2', { extend: 'ext.form.triggerfield', defaultautocreate : {tag: "input", type: "text", size: "16",style:"cursor:default;", autocomplete: "off"} ,triggercls: 'x-form-search-trigger' ,lovtitle: '' ,view: {} ,window:null ,windowconfig: {} ,showlov: function() { this.renderwindow(); this.window.show(); } ,onrender: function(ct, position){ base.l...