diff --git a/src/Form/Element/Columns.php b/src/Form/Element/Columns.php index 9793ef413..101a1b01f 100644 --- a/src/Form/Element/Columns.php +++ b/src/Form/Element/Columns.php @@ -147,6 +147,15 @@ public function save() }); } + public function afterSave() + { + parent::afterSave(); + + $this->applyCallbackToItems(function (FormElementInterface $item) { + $item->afterSave(); + }); + } + /** * @param Closure $callback */