Yiistrap configuration issue

扶醉桌前 提交于 2019-12-01 11:53:13

I had the same problem. You can fix it configuring all required directories for bootstrap in your main.php:

'import'=>array(
    ...
    'bootstrap.helpers.*',
    'bootstrap.widgets.*',
    'bootstrap.behaviors.*',
),

With Yiistrap 1.3.0 I had to do the following:

'import' => array(
    'bootstrap.helpers.TbHtml',
    'bootstrap.helpers.TbArray',
    'bootstrap.behaviors.TbWidget',
    'bootstrap.widgets.*'
)
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!