Extjs控制GridPanel中特定单元格的内容及样式

如下,当"当前状态"列中的内容是1时,将其变为"异常",并红色显示出来


{

   header: '当前状态',
   align: 'center',
   dataIndex: 'IsWork',
sortable: true,
//menuDisabled:true,
   width: 80,
renderer:function(value,cellmeta,record, rowIndex, columnIndex, store){
if(value != 1){
value = "异常";
cellmeta.css="RedFont";
}else{
value = "正常";
}
return value;
}

   }


.RedFont{
color:#ff0000;
}

posted on 2012-02-04 15:50  java课程设计例子  阅读(154)  评论(0编辑  收藏  举报