<th data-options="field:'isOpen',width:80,align:'right',sortable:true,
formatter : function(value,row,index){
if(value=='1'){return '公开'} else if(value=='0'){return '不公开'}
},
styler: function(value,row,index){
if (value =='1'){ return 'color:green;' }else{ return 'color:red;' }
}
">是否公开</th>
<th data-options="field:'status',width:80,align:'right',sortable:true">状态</th>
<th data-options="field:'downloadEnable',width:80,align:'right',sortable:true,
formatter : function(value,row,index){
if(value=='1'){ return '允许'} else if(value=='0'){return '不允许'}
},
styler: function(value,row,index){
if (value =='1'){ return 'color:green;' }else{ return 'color:red;' }
}
">是否允许下载</th>
或者参考:http://blog.youkuaiyun.com/liuchuanhong1/article/details/53540126