Implement dynamic table columns hiding

This commit is contained in:
buinsky
2016-07-18 18:58:16 +03:00
parent 56b885995c
commit 3ac87f22cb
2 changed files with 69 additions and 1 deletions

View File

@@ -228,7 +228,7 @@ var ContextMenu = new Class({
//execute an action
execute: function (action, element) {
if (this.options.actions[action]) {
this.options.actions[action](element, this);
this.options.actions[action](element, this, action);
}
return this;
}