kartik-v / yii2-widget-select2

Enhanced Yii2 wrapper for the Select2 jQuery plugin (sub repo split from yii2-widgets).
http://demos.krajee.com/widget-details/select2
Other
323 stars 145 forks source link

remove select2-krajee.css #267

Closed ered15 closed 6 years ago

ered15 commented 6 years ago

quick question, is there any way to remove select2-krajee.css from loading, I tried :

'kartik\select2\Select2Asset' => [
                    'css' => [],
                ],

but it wont remove it.

ered15 commented 6 years ago

nevermind, found out the solution:

'kartik\select2\ThemeKrajeeAsset' => false,
'kartik\select2\Select2Asset' => [
  'css' => [],
],
kartik-v commented 6 years ago

That is not the correct way.

You just need to set / override the Select2::theme property. It defaults to Select2::THEME_KRAJEE - which can be changed to Select2::THEME_DEFAULT to load the default theme for example.