Extjs4 IE上的Extjs 4面板列宽问题

Extjs4 IE上的Extjs 4面板列宽问题,extjs4,internet-explorer-11,Extjs4,Internet Explorer 11,我正在做ExtJS4 我有一个这样的网格面板 它在CHROME上运行良好,但在IE 11上运行良好, 网格列无法正确渲染。 代码: 我试过viewport和其他容器,但仍然面临相同的问题 谁能帮忙吗。 谢谢尝试网格配置,列宽:[“100%”]什么是列定义? GRID = Ext.create('Ext.grid.Panel', { title: 'Popup', frame: true, selModel: checkboxselection,

我正在做ExtJS4

我有一个这样的网格面板

它在CHROME上运行良好,但在IE 11上运行良好, 网格列无法正确渲染。

代码:

我试过viewport和其他容器,但仍然面临相同的问题

谁能帮忙吗。
谢谢

尝试网格配置,列宽:[“100%”]

什么是列定义?
GRID = Ext.create('Ext.grid.Panel', {
        title: 'Popup',
        frame: true,
        selModel: checkboxselection,
        store: Ext.data.StoreManager.lookup('popupStore'),
        scrollable: true,
        columns: _COLS,
        features: [groupingFeature],
        flex: 90,
        autoHeight:true,
        autoWidth:true,
        renderTo: 'details',
        scroll: true,
        viewConfig: {
        style: {

        overflowX: 'hidden'
           }
         },
        listeners: {
            itemclick: function(dv, record, item, index, e) {
            SELECTED_GROUP_VALUE = record.get('GROUP_FIELD');
            if(selectionType =='SINGLE'){
                setValue(getProdId(), record);
            }
        },
        beforeselect: function(grid, record, index, eOpts)  {  },
        groupclick: function (view, node, group, e, eOpts) {  },
        headerclick: function(){                
            }
        },
        onSelectChange: function(record, isSelected, suppressEvent, commitFn) {
            grid = Ext.ComponentQuery.query('#grid-item-id')[0];
            grid.suspendLayout = true;
            this.callParent(arguments);
        }


    });