1
我有一個網格中的jqGrid
我的清單很長,所以是右側如何讓垂直滾動在單獨的列中的jqGrid
垂直滾動而滾動條是在最後右側
這樣在一個單獨的列不
我怎樣才能讓它在一個單獨的列?
看壞的結果:here
看到代碼:here
我有一個網格中的jqGrid
我的清單很長,所以是右側如何讓垂直滾動在單獨的列中的jqGrid
垂直滾動而滾動條是在最後右側
這樣在一個單獨的列不
我怎樣才能讓它在一個單獨的列?
看壞的結果:here
看到代碼:here
添加一個空白列在最後,然後滾動條會去那裏。
這樣做在您的網格設置通過追加一個空白值到你的數據行:
beforeProcessing: function (data, status, xhr) {
//add the spaces to the returned data to allow for the blank vertical columns in the grid
for (var x = 0, length = data.rows.length; x < length; x++) {
data.rows[x].cell.splice(5,0, "");
}//for
}, //beforeProcessing
額外的價值添加到您的列:
'Fournisseur<br/>Commande',
'Contenu', ''],
然後在空白欄內定義添加:
{ name: "empty1", width: 10, sortable: false, hidedlg: true, search: false, resizable: false, fixed: true },
此解決方案在Firefox中運行,但不在Chrome中,我需要優先於Chrome – Nono 2013-02-19 08:49:53