我的数据列的值为“1”或“0”,我需要在网格中显示“已启用”或“已禁用”。
如何根据输入值在网格中显示不同的值?
答案 0 :(得分:1)
答案:
function formatterActive(row, cell, value, columnDef, dataContext) {
if( value == '1' ) {
return 'enabled';
} else { // '0'
return 'disabled';
}
}
columns : [
// ...
{ id: 'active', name: 'active', field: 'active', formatter: formatterActive }
],