Javascript Extjs-网格列don';t与镀铬网格头对齐

Javascript Extjs-网格列don';t与镀铬网格头对齐,javascript,google-chrome,extjs,Javascript,Google Chrome,Extjs,我有一个奇怪的问题,extjs网格中的列无法与其列标题对齐。这是铬特有的 下面是一个例子: firefox中的代码相同(浏览器的宽度不同): 这是我的密码: var summaryGrid = Ext.create('Ext.grid.Panel', { store: 'summary-data', stripeRows: true, columnLines: true, autoShow: true, loadMask: true, for

我有一个奇怪的问题,extjs网格中的列无法与其列标题对齐。这是铬特有的

下面是一个例子:

firefox中的代码相同(浏览器的宽度不同):

这是我的密码:

var summaryGrid = Ext.create('Ext.grid.Panel', {
    store: 'summary-data',
    stripeRows: true,
    columnLines: true,
    autoShow: true, 
    loadMask: true,
    forceFit: true,
columns: [ 
        {header: 'Code', dataIndex: 'code', width: 65},
        {header: 'Type', dataIndex: 'type'},
        {header: 'Attributes', dataIndex: 'attributes'},
    {header: 'Count', dataIndex: 'count'},
        {header: 'Text', dataIndex: 'text', flex: 1},
        {
    header: 'Waived', 
    dataIndex: 'waived'
    },
    {
    xtype: 'actioncolumn',
    items: [{
        icon: './images/add.png',
        tooltip: "Modify the waivers associated with this row.",
        handler: function(grid, rowIndex, colIndex){
            //alert("Button clicked");
            var record = summaryGrid.getStore().getAt(rowIndex);
            WaiverRowIndex = rowIndex;
            WaiverCode = record.get("code");                
            WaiverSource = "context";
            console.log(WaiverCode);
            waiverWin.show();
        }
    },
    {
        icon: './images/remove.png',
        tooltip: "Modify the waivers associated with this row.",
        handler: function(grid, rowIndex, colIndex){
            //alert("Button clicked");
            var record = summaryGrid.getStore().getAt(rowIndex);
            WaiverRowIndex = rowIndex;
            WaiverCode = record.get("code");                
            WaiverText = record.get("text");
            WaiverSource = "context";
            WaiverType = "ALL";
            Ext.MessageBox.confirm('Confirm', 'Remove all waivers on messages with Code: '+WaiverCode, removeWaiver);

        }
    }]
    },  
    ],
bbar: Ext.create('Ext.PagingToolbar', {
    pageSize: 25,
    store: 'summary-data',
    displayMsg: 'Displaying messages {0} - {1} of {2}',
    emptyMsg: "No messages to display"
    }),
listeners: {
        itemdblclick: function(dv, record, item, index, e) {
            CodeRegexp = record.get("code");
            TypeRegexp = record.get("type");
            globalRefresh("true");      
        }
    },
viewConfig: {
    getRowClass: function(record) {
        if(record.get('type') == "Error"){
            return 'error-row';
        }else if(record.get('type') == "Warning"){
            return 'warning-row';
        }else{
            return 'normal-row';
        }
    }       
}

我非常感谢任何人对Chrome为什么会如此奇怪地渲染这个网格所给予的帮助。多谢各位

您使用的是哪个ExtJS版本?