Reputation: 1
I use rowClick event in Tabulator (6.3) to perform an row update into a database. The event is fired perfectly for standard elements, but not for list elements:
table.on("rowClick", function(e, row){
console.log ('--- rowClick ---');
});
e.g. for this column:
{title:"Aufgabe", field: "name", width: 100, editor: "list", editorParams: {values: aufgabendata}},
Is there a chance to get this event on row, regardless of type of cell?
BTW Editor "time" works fine.
The main goal is to have an event when the row changed (click on another row) and a cell in the old row had been changed.
Upvotes: 0
Views: 12