Enhanced Select

Powered by Select2 3.5.x with Elevate vendor theme from @g2crowd/elevate/vendor/select2

Replaces Combobox: The custom combobox component has been deprecated. Use Select2 with the Elevate vendor theme for searchable, multi-select dropdowns.

Single Select with Search

<select class="elv-select elv-select--md">
  <option></option>
  <option>Engineering</option>
  <!-- options -->
</select>

<!-- Initialize with: -->
$('select.elv-select').select2({
  containerCssClass: 'elv-select elv-select--md',
  dropdownCssClass: 'elv-select-drop',
  placeholder: 'Select...',
  allowClear: true
});

Multi Select (replaces combobox)

Select multiple items with chips. Search to filter options.

<select class="elv-select elv-select--md" multiple>
  <option>Ruby</option>
  <option>JavaScript</option>
  <!-- options -->
</select>

Size Variants

Multi Select (Small)

No Search