kartik-v / yii2-widgets

Collection of useful widgets for Yii Framework 2.0
http://demos.krajee.com/widgets
Other
558 stars 177 forks source link

Select all is not working with having key - Characters, is there any way to fix this without composer update ? #387

Open prathapgantena opened 1 year ago

prathapgantena commented 1 year ago

Please find attached sample code echo $form->field($model, 'column_name')->widget(Select2::classname(), [ 'data' => ['test-1'=>'Test-1','test-2'=>'Test-2','test 3'=>'Test-3','test@1'=>'Test @ 4'], 'language' => 'en', 'options' => [ 'placeholder' => 'Search Data ', ], 'pluginOptions' => [ 'allowClear' => true, 'multiple' => true, ], ]);

select2_issue