yii\widgets\BaseListView::renderEmpty PHP 메소드

renderEmpty() 공개 메소드

Renders the HTML content indicating that the list view has no data.
또한 보기: emptyText
public renderEmpty ( ) : string
리턴 string the rendering result
    public function renderEmpty()
    {
        $options = $this->emptyTextOptions;
        $tag = ArrayHelper::remove($options, 'tag', 'div');
        return Html::tag($tag, $this->emptyText, $options);
    }