我正在将引导程序加载到模块中:
'modules'=>array(
'admin'=>array(
'preload'=>array('bootstrap'),
'components'=>array(
'bootstrap'=>array(
'class'=>'ext.bootstrap.components.Bootstrap',
'responsiveCss' => true,
),
)
),
),
在 GridView 我试图创建一个 TbButtonColumn:
array(
'class'=>'bootstrap.widgets.TbButtonColumn',
'htmlOptions'=>array('style'=>'width: 50px'),
),
这将返回一个 CException
未定义属性“CWebApplication.bootstrap”。
因为它指向主配置应用程序中显然不存在的引导程序,所以在模块中加载引导程序时如何引用它?
我试过了:
components.bootstrap.widgets.TbButtonColumn
admin.components.bootstrap.widgets.TbButtonColumn
admin.bootstrap.widgets.TbButtonColumn