设置为折叠后加载,但应扩展加载-功能相反

时间:2019-04-11 20:09:56

标签: php html yii

我有一些代码可以在页面加载时以折叠状态加载小部件。我要求它不要以折叠状态加载。我要求它具有相反的功能。负载已扩展,但可以根据需要使用其切换功能折叠。

我已经尝试过,但似乎无法弄清楚。我该如何解决这个问题?

尝试

public function run()
{
    if (isset($this->header)) {
        $tag = ArrayHelper::remove($this->headerOptions, 'tag');
        $header = $this->header .
            Html::tag('div', '', ['class' => 'd-flex flex-fill sidebar-menu-line']) .
            Html::button('<i class="fe fe-chevron-down"></i>', [
                'data-icon-show' => 'fe-chevron-down',
                'data-icon-hide' => 'fe-chevron-up',
                'class' => 'btn btn-sm btn-secondary btn-toggle-sidebar float-right d-block d-lg-none',
            ]);
        echo Html::tag($tag, $header, $this->headerOptions);
    }

    parent::run();
}   

0 个答案:

没有答案