SlickGrid:如何更改' 1'中的列值启用'?

时间:2014-03-27 09:00:47

标签: slickgrid

我的数据列的值为“1”或“0”,我需要在网格中显示“已启用”或“已禁用”。

如何根据输入值在网格中显示不同的值?

1 个答案:

答案 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 }
],