2017-02-17 177 views

回答

2

你確定是因爲列數?我遇到了同樣的問題,解決方法是取消每列的固定選項。

例如,如果你有這樣的:

{headerName: "Athlete", field: "athlete", width: 150, pinned: 'left'} 

它必須是:

{headerName: "Athlete", field: "athlete", width: 150} 
+0

嘿謝謝。我也使用固定選項。根據你的建議我脫下固定選項,它的作品。感謝洛特。 –

0

確保您有沒有登上gridOptions對象設置爲true suppressHorizo​​ntalScroll財產你有嗎?

var gridOptionsTop = { 
    columnDefs: columnDefs, 
    // don't show the horizontal scrollbar on the top grid 
    suppressHorizontalScroll: false, 
    enableSorting: true, 
};