Home > Backend Development > PHP Tutorial > Yii框架自动生成的代码的admin页面,加入下拉列表页面?

Yii框架自动生成的代码的admin页面,加入下拉列表页面?

WBOY
Release: 2016-06-23 14:21:44
Original
885 people have browsed it

'系统管理员',1=>'普通用户')); ?>
默认在页面可以显示。但在'columns'=>array()中如何处理?

官方提供的例子数据字典在数据库中,静态数据如何处理?


回复讨论(解决方案)

如示例代码一样,传一个数组进去就可以
key代表的是name名称
val代表的是值。

能给一段可以运行的代码不。。。

'columns'=>array(
//'ID',
'Account',
'Password',
'Name',
        'Mail',
'Nickname',
/* */
        // 'Type',
//array(
// 'name'=>'Type',
        //    'value'=>CHtml::dropDownList('type','0',array(0=>'系统管理员',1=>'普通用户')),
//'filter'=>Lookup::items('PostStatus'),
//),
        //$this->dropDownList('type','0',array(0=>'系统管理员',1=>'普通用户'),''),
array(
'class'=>'CButtonColumn',
),
这是自动生成的代码,怎么加入啊?

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template