Tabulator 4 我可以扩展格式化程序而不是创建自定义格式化程序吗?

Tabulator 4 can I extend the formatters instead of creating a custom formatter?

Tabulator 有几个内置的 Cell Formatters,如文档中所述 - http://tabulator.info/docs/4.0/format#format

我们知道我们可以像这样构建自定义格式化程序:

var myCustomFormatter=function(cell, formatterParams, onRendered){
return "Mr" + cell.getValue();
}

然后在列参数中像这样使用它:

{title:"Name", field:"name", formatter:myCustomFormatter}

虽然制表符格式化程序 "used" 作为字符串:

{title:"Name", field:"name", formatter:"textarea"}

我们的目标是通过扩展现有的格式化程序,将 "myCustomFormatter" 添加到参数列的可用选项列表中。

为什么?我们正在构建一些动态的东西,columns 参数将填充一个变量,该变量从 JSON 字符串接收他的值。像这样:

var jc='[{"title":"Name", "field":"name", "formatter":"myCustomFormatter"}]';
var c=JSON.parse(c);

var table = new Tabulator("#tbdiv", {columns: c});

但是此代码不起作用,因为 "myCustomFormatter"(作为字符串)在格式化程序参数中不可用。

结论,是否可以使用新的单元格格式化程序扩展制表符格式化程序(不更改原始代码)?

如果没有,请问我们如何填写列参数,以便它使用我们的自定义格式化程序?

谢谢

您可以使用 Tabulator 原型上的 extendModule 函数扩展模块:

//add uppercase formatter to format module
Tabulator.prototype.extendModule("format", "formatters", {
    uppercase:function(cell, formatterParams){
        return cell.getValue().toUpperCase(); //make the contents of the cell uppercase
    }
});

//use formatter in column definition
{title:"name", field:"name", formatter:"uppercase"}

您需要确保在包含源文件之后但在创建第一个 table 之前扩展 Tabulator。

可以在 Tabulator Website Documentation

上找到完整的文档