1 model定义的时候可以添加cell的format方法
例如:
{name:'xxx',index:'xxx',align:'xxx', width:'xx',editable:true, sortable : false, formatter : scoreDecode},
2 定义formatter 方法处理cell单元格
function scoreDecode(cellvalue, options, rowObject)
{
return yyy(cellvalue);
}