<?= $form->field($model, 'template_id')->widget(CheckboxMultiple::className(), [
'dataAttribute' => 'template_id',
scriptOptions' => [450=>'abc',452=>'xyz'],
'placeholder' => Yii::t('app', 'Select ...'),
]) ?>
我尝试实现这个=&gt; https://github.com/diiimonn/yii2-widget-checkbox-multiple
但我没有得到结果。 当我完成代码后,我得到了空白页。
这里的错误是什么?
答案 0 :(得分:1)
js控制台中是否有错误?我认为问题似乎是资产捆绑的CheckboxMultiple小部件。 JQuery Assets缺少依赖属性。尝试在渲染小部件之前手动注册jQuery。 dataAttribute
属性似乎在此小部件的最新版本中未知......这对我有用:
$this->registerAssetBundle(yii\web\JqueryAsset::className());
echo $form->field($model, 'templates')->widget(CheckboxMultiple::className(), [
'attributeLabel' => 'templates',
'placeholder' => Yii::t('app', 'Select ...'),
'ajax' => [
'url' => Url::toRoute(['/site/templates']),
],
]);
其中templates属性是模型中的关系,如下所示:
public function getTemplates()
{
return $this->hasMany(TemplateModel::className(), ['owner_id' => 'id']);
}
并在SiteController操作模板中:
public function actionTemplates()
{
Yii::$app->response->format = 'json';
$json = new \stdClass();
$query = new Query();
$query->select([
'id' => 'id',
'text' => 'name'
]);
$query->from(TemplateModel::tableName());
if ($search = Yii::$app->request->post('search', '')) {
$query->where(['like', 'name', $search]);
}
$query->orderBy([
'name' => SORT_ASC
]);
if ($itemsId = Yii::$app->request->post('itemsId', [])) {
$query->andWhere(['not in', 'id', $itemsId]);
}
$query->limit(20);
$command = $query->createCommand();
$data = $command->queryAll();
$json->results = array_values($data);
return $json;
}
在此示例中,我使用表templates
和列id
,name
和owner_id
。
您应该将上述脚本修改为您的模型和属性名称。