yii2-multi-select-widget
yii2-multi-select-widget copied to clipboard
Is it compatible with bootstrap 4?
I am facing issue on mobile devices. Select dropdown is open by default and its not closing after selecting. on bigger screens its working
It is not compatible but for now you can just extend it and by changing assets will do the trick .
class MultiSelectAsset extends AssetBundle
{
public $sourcePath = '@npm/bootstrap-multiselect/dist';
public $js = [
'js/bootstrap-multiselect.js'
];
public $css = [
'css/bootstrap-multiselect.css'
];
public $depends = [
'yii\bootstrap4\BootstrapPluginAsset'
];
}
change 'yii\bootstrap\BootstrapPluginAsset'
with 'yii\bootstrap4\BootstrapPluginAsset'
...which is pretty easily done by merging the following into your config components section to override the plugin dependency.:
'assetManager' => [
'class' => 'yii\web\AssetManager',
'bundles' => [
'dosamigos\multiselect\MultiSelectAsset' => [
'depends' => [ 'yii\bootstrap4\BootstrapPluginAsset' ],
],
],
],