yii\widgets\BaseListView::renderEmpty PHP Method

renderEmpty() public method

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