1

如何在数据表的单元格中显示图像而不是布尔值?数据表与数据源相关联。

4

1 回答 1

5

formatter您可以使用自定义函数将任何 HTML 放入单元格中。您的 Column 定义可能如下所示:

var myColumnSet = [
    {
        key: 'active_employee',
        label: 'Active',
        formatter: function(el, oRecord, oColumn, oData) {
            // el is the HTMLElement of the current cell
            // oRecord gives you access to other fields from the
            //    DataSource, e.g.: oRecord.getData('full_name')
            // oData is the value of the current field (active_employee)

            if (oData) {
                el.innerHTML = '<img src="/images/active.png">';
            } else {
                el.innerHTML = '<img src="/images/not-active.png">';
            }
        }
    },
    // other Columns....
];

另请参阅自定义单元格格式示例

于 2009-08-05T22:37:20.963 回答