Skip to content

Commit

Permalink
pass cell component to mutator when needed
Browse files Browse the repository at this point in the history
  • Loading branch information
olifolkerd committed Jul 22, 2017
1 parent 6fd86cd commit b48e5e5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/js/tabulator.js
Original file line number Diff line number Diff line change
Expand Up @@ -11453,7 +11453,7 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope

Mutator.prototype.transformCell = function (cell, value) {

return cell.column.extensions.mutate.mutator(value, cell.row.getData(), "edit", cell.column.extensions.mutate.params);
return cell.column.extensions.mutate.mutator(value, cell.row.getData(), "edit", cell.column.extensions.mutate.params, cell.getComponent());
};

//default mutators
Expand Down
Loading

0 comments on commit b48e5e5

Please sign in to comment.