Skip to content

Commit

Permalink
fixed #25
Browse files Browse the repository at this point in the history
Form element multiselect not working with columns
  • Loading branch information
butschster committed Mar 10, 2016
1 parent 88acf68 commit 3d6ba1b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/Form/Element/Columns.php
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,15 @@ public function save()
});
}

public function afterSave()
{
parent::afterSave();

$this->applyCallbackToItems(function (FormElementInterface $item) {
$item->afterSave();
});
}

/**
* @param Closure $callback
*/
Expand Down

0 comments on commit 3d6ba1b

Please sign in to comment.