比如当以一个字段的内容是on显示是红色,如果是off显示是蓝色
var grid = new Ext.grid.GridPanel({
store: store,
columns: [
{header: "Change", width: 75, sortable: true, [color=red]renderer: change[/color], dataIndex: 'change'}
],
stripeRows: true,
autoExpandColumn: 'company',
height:350,
width:600,
title:'Array Grid'
});
function change(val){
if(val=='off'){
return '' + val + '';
}else if(val=='on'){
return '' + val + '';
}
return val;
}