2013-04-18 77 views

回答

0

你需要做以下

1)CSS改變

.yellowishRow .dojoxGridCell { 
    background-color: #F3F781; 
} 

在JavaScript

dojo.connect(dijit.byId("grid"),"onStyleRow",this,function(row){ 
     var item = dijit.byId("grid").getItem(row.index); 
     if (item) { 
      var type = store.getValue(item, editMode, null); 
       if (type == "1") { 
        row.customClasses += ' regStartedRow'; 
      } 
     dijit.byId("grid").focus.styleRow(row); 
     dijit.byId("grid").edit.styleRow(row); 

    });  
相關問題