如何在单元格的自定义渲染器中返回默认单元格格式

时间:2019-04-08 09:40:02

标签: reactjs ag-grid-react

我正在尝试使用reactjs返回默认格式或基于a-grid中单元格渲染器中的某些条件自定义格式

function getSimpleCellRenderer() {
    function SimpleCellRenderer() {}
    SimpleCellRenderer.prototype.init = function(params) {
        if (condition) {
            /// set the default format
        } else {
            /// customize the format
        }
    };
    SimpleCellRenderer.prototype.getGui = function() {
        return this.eGui;
    };
    return SimpleCellRenderer;
}

0 个答案:

没有答案