yii\grid\GridView::renderSection PHP Method

renderSection() public method

public renderSection ( $name )
    public function renderSection($name)
    {
        switch ($name) {
            case '{errors}':
                return $this->renderErrors();
            default:
                return parent::renderSection($name);
        }
    }

Usage Example

Example #1
0
 public function renderSection($name)
 {
     if ($name == '{tools}') {
         return $this->renderTools();
     } else {
         return parent::renderSection($name);
     }
 }
All Usage Examples Of yii\grid\GridView::renderSection