我有一些代码可以在页面加载时以折叠状态加载小部件。我要求它不要以折叠状态加载。我要求它具有相反的功能。负载已扩展,但可以根据需要使用其切换功能折叠。
我已经尝试过,但似乎无法弄清楚。我该如何解决这个问题?
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();
}