我正在使用Tabulator,并且想听表编辑事件。我检查了回调 dataEdited ,发现所有示例在创建实例时都设置了回调函数,例如 new Tabulator('#samplediv',{dataEdited:function(){...}} )。
但是,在实例创建后,我需要在子函数中设置回调:
const table=new Tabulator(......)
function SomeSub(){
// how to set dataEdited of table here?
}
我尝试了不起作用的table.dataEdited = function(){}。
我不知道对于熟练的程序员来说这是否是一个真正的问题,但这确实让我感到困惑。非常感谢您的任何评论。
答案 0 :(得分:0)
实例化后,您无法在Tabulator中更改回调,但是您可以简单地从回调内部调用另一个函数。
如果您只想跟踪用户编辑而不是所有数据更改,那么 cellEdited 回调可能是更合适的选择。
function externalFunction(cell){
do a thing;
}
var table = new Tabulator("#example-table", {
cellEdited:function(cell){
externalFunction(cell);
},
});
如果您希望能够更改所调用函数的性质,则可以仅将函数添加到外部对象上,然后随时更改它。
//define initial function holding object
var functionHolder = {
externalFunction:function (cell){
do a thing;
}
}
//create your table
var table = new Tabulator("#example-table", {
cellEdited:function(cell){
functionHolder.externalFunction(cell);
},
});
//...
//some time later redefine the function
functionHolder.externalFunction = function(cell){
//do something different
}