Commit 031fddd4 by Ivan Kolmycheck

GridView - error rendering scheme changed

parent 7eaf83ba
...@@ -214,9 +214,9 @@ class GridView extends BaseListView ...@@ -214,9 +214,9 @@ class GridView extends BaseListView
} }
/** /**
* Renders the list of filterModel errors * @inheritdoc
*/ */
public function renderErrorsList() public function renderErrors()
{ {
if ($this->filterModel instanceof Model && $this->filterModel->hasErrors()) if ($this->filterModel instanceof Model && $this->filterModel->hasErrors())
{ {
...@@ -227,17 +227,8 @@ class GridView extends BaseListView ...@@ -227,17 +227,8 @@ class GridView extends BaseListView
} }
return Html::tag('div', Html::ul($errorsList, ['class' => 'help-block']), ['class' => 'has-error']); return Html::tag('div', Html::ul($errorsList, ['class' => 'help-block']), ['class' => 'has-error']);
} }
return '';
}
/** return parent::renderErrors();
* @inheritdoc
*/
public function renderSummary()
{
$summary = parent::renderSummary();
$errorsList = $this->renderErrorsList();
return $summary . $errorsList;
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment