2011-09-29 53 views

回答

0

我想你的意思是隻讀網格; 在創建網格:

var dataGrid = new dojox.grid.DataGrid({ 
         id: 'xxx', 
         store: myStore, structure:myLayout, 
         canSort:false, //disable sorting //Then do the same thing for every attributes options and disable them all 
         }, dojo.byId("myDivName")); 

您可能需要替換一些默認行爲,如:

 onHeaderEvent: function (e) { 
      //make it do nothing     

     }, 

http://livedocs.dojotoolkit.org/dojox/grid/DataGrid 只是清楚所有的東西檢查等活動。

而且在你的CSS,你可能需要做這樣的事情,如:

.dojoxGridRowSelected 
{ 
    background-color:none; 
    border:none;..... 
} 

.dojoxGridCellFocus 
{ 
    border:none; 
} 

只要從domNodes發現的類名稱

0

使用屬性「canSort:假」來隱藏或禁用排序按鈕在數據網格道場代碼

變種newGrid =新數據網格({

id : 'newGrid', 

    canSort:false, 

    store : this.resultStore, 

    structure : this.resultGridLayout, 

    autoHeight:true 

});

問候,

薩蒂什中號Hiremath

相關問題