From 2f0765bcba73356aca74a217bda111204b91a88b Mon Sep 17 00:00:00 2001 From: Pavel Janda Date: Wed, 12 Jun 2019 00:56:22 +0200 Subject: [PATCH] DataGrid: fixed calling ::getName() -> ::getFullName() --- src/DataGrid.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/DataGrid.php b/src/DataGrid.php index 680e855d..418288cf 100644 --- a/src/DataGrid.php +++ b/src/DataGrid.php @@ -2212,7 +2212,7 @@ public function handleGetItemDetail($id): void if ($this->getPresenterInstance()->isAjax()) { $this->getPresenterInstance()->payload->_datagrid_toggle_detail = $id; - $this->getPresenterInstance()->payload->_datagrid_name = $this->getName(); + $this->getPresenterInstance()->payload->_datagrid_name = $this->getFullName(); $this->redrawControl('items'); /** @@ -2867,7 +2867,7 @@ public function handleShowInlineAdd(): void if ($presenter->isAjax()) { $presenter->payload->_datagrid_inline_adding = true; - $presenter->payload->_datagrid_name = $this->getName(); + $presenter->payload->_datagrid_name = $this->getFullName(); $this->redrawControl('tbody');