[转载]yii2.0 的多选框实现方法

作者: wxfeng 分类: 未分类 发布时间: 2017-06-13 00:00    阅读 1,001 次

转自:http://www.yiichina.com/tutorial/85

下面介绍一下 yii2.0 的 多选框实现方法

第一种:ActiveForm::checkboxList();     优点:可以将全部数据生成多选框,自带验证

$form->field($model, 'username')->checkboxList(ArrayHelper::map($data,'id', 'customer_name'));

第二种:ActiveForm::checkbox();  优点:只生成一个多选框,自带验证

$form->field($model, 'username')->checkbox(ArrayHelper::map($data,'id', 'customer_name'));

第三种:Html::activeCheckbox();

Html::activeCheckbox($model, 'username', ArrayHelper::map($data,'id', 'customer_name'));

第四种:Html::activeCheckboxList();

Html::activeCheckboxList($model, 'username', ArrayHelper::map($data,'id', 'customer_name'));

如果觉得我的文章对您有用,请随意赞赏。您的支持将鼓励我继续创作!

发表评论

您的电子邮箱地址不会被公开。