Yi echmultiselect在控制台上显示错误,不起作用

问题描述 投票:0回答:1

我在这里https://www.yiiframework.com/extension/echmultiselect#3-use-as-a-filter-in-cgridview遵循Option no 3在我的Yii项目中添加多选下拉列表。但它显示,

jquery.js:6920未捕获的TypeError:jQuery.easing [this.easing]不是功能在init.run(jquery.js:6920)

在我的[[cgridview上,该列必须是多个选择复选框,]]array ( 'name'=>'brand_id', 'filter'=> $this->widget('ext.EchMultiSelect.EchMultiSelect', array( 'model' => $model, 'dropDownAttribute' => 'brand_id', 'data' => CHtml::listData(Brands::model()->findAll(array("order" => "sortOrder")), 'id', 'name'), 'options' => array('buttonWidth' => 80, 'ajaxRefresh' => true,'filter'=>true), ), true // capture output; needed so the widget displays inside the grid ), ),

在我的[[布局
上,

我已经包含了jQuery,

<?php Yii::app()->clientScript->registerCoreScript('jquery'); ?>

下拉页面:

enter image description here

由于该jQuery.easing [this.easing]不是函数错误,因此多选功能不起作用,根据此处的建议:https://stackoverflow.com/a/12592301/1138192我也添加了jQuery UI,但它不起作用即使它破坏了现有的下拉菜单。

控制台错误:

enter image description here

我在这里遵循选项3,https://www.yiiframework.com/extension/echmultiselect#3-use-as-a-filter-in-cgridview在我的Yii项目中添加多选下拉列表。但它显示,jquery.js:...
javascript jquery yii
1个回答
0
投票
© www.soinside.com 2019 - 2024. All rights reserved.