Skip to content

Commit

Permalink
DataGrid: fixed calling ::getName() -> ::getFullName()
Browse files Browse the repository at this point in the history
  • Loading branch information
paveljanda committed Jun 11, 2019
1 parent f527403 commit 2f0765b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DataGrid.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');

/**
Expand Down Expand Up @@ -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');

Expand Down

0 comments on commit 2f0765b

Please sign in to comment.