yii\bootstrap\ButtonDropdown::renderDropdown PHP Method

renderDropdown() protected method

Generates the dropdown menu.
protected renderDropdown ( ) : string
return string the rendering result.
    protected function renderDropdown()
    {
        $config = $this->dropdown;
        $config['clientOptions'] = false;
        $config['view'] = $this->getView();
        /** @var Widget $dropdownClass */
        $dropdownClass = $this->dropdownClass;
        return $dropdownClass::widget($config);
    }