level 2
shh_tw
楼主
GridPanel1.getStore().on('load',function(s,records){
var girdcount=0;
s.each(function(r){
if(r.get('clyr')=='///'){
GridPanel1.getView().getRow(girdcount).style.backgroundColor='#FFFF00';
}else {
GridPanel1.getView().getRow(girdcount).style.backgroundColor='#FFFF00';
}
girdcount=girdcount+1;
});
});
颜色怎么还是变不了
2012年11月21日 09点11分
1
var girdcount=0;
s.each(function(r){
if(r.get('clyr')=='///'){
GridPanel1.getView().getRow(girdcount).style.backgroundColor='#FFFF00';
}else {
GridPanel1.getView().getRow(girdcount).style.backgroundColor='#FFFF00';
}
girdcount=girdcount+1;
});
});
颜色怎么还是变不了