Skip to content

Instantly share code, notes, and snippets.

@marcuzy
Created May 14, 2016 16:59
Show Gist options
  • Save marcuzy/23037b62ce75a7106d1f85d1c1cf2317 to your computer and use it in GitHub Desktop.
Save marcuzy/23037b62ce75a7106d1f85d1c1cf2317 to your computer and use it in GitHub Desktop.
Select2.js tags, hide dropdown (here Yii2 kartik widget)
<?php
echo Select2::widget([
//...
'pluginOptions' => [
'tags' => true,
'tokenSeparators' => [',', ' '],
'dropdownCssClass' => 'hide' // <-- hide - Twitter Bootstrap class for hidding dropdown
],
//...
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment