Jieven 发布于83月前 0答/1930阅
效果图:
格式化器代码:
function(value, row, index, field) {
if (value) {
var s = '<div style="width:100%;border:1px solid #ccc">' + '<div style="width:' + value + '%;background:#cc0000;color:#fff">' + value + '%' + '</div></div>';
return s;
} else {
return '';
}
}