Skip to content

Select

Select - Select input component

html
<KSelect label="Pick Something:" :items="items" />

Props

items

An array of items containing a label and value. You may also specify:

  • a certain item is selected by default
  • a certain item is disabled
  • certain items are grouped under a group
html
<KSelect :items="[{
    label: 'Cats',
    value: 'cats',
    selected: true
  }, {
    label: 'Dogs',
    value: 'dogs',
    disabled: true,
  }, {
    label: 'Bunnies',
    value: 'bunnies'
  }, {
    label: 'Duck',
    value: 'duck',
    group: 'Birds'
  }, {
    label: 'Oriole',
    value: 'oriole',
    group: 'Birds'
  }, {
    label: 'Trout',
    value: 'trout',
    group: 'Fish'
  }, {
    label: 'Salmon',
    value: 'salmon',
    group: 'Fish'
  }]"
/>

label

The label for the select.

html
<KSelect label="Cool label" :items="items" />

overlayLabel

Enable this prop to overlay the label on the input element's border for select and dropdown appearances. Defaults to false.

html
<KSelect label="Name" placeholder="I'm labelled!" :overlay-label="true" :items="items" />
<KSelect label="Name" placeholder="I'm labelled!" :overlay-label="true" appearance="select" :items="items" />
<KSelect label="Disabled" disabled placeholder="I'm disabled!" :overlay-label="true" :items="items" />
<KSelect label="Readonly" readonly placeholder="I'm readonly!" :overlay-label="true" :items="items" />

labelAttributes

Use the labelAttributes prop to configure the KLabel's props if using the label prop. This example shows using the label-attributes to set up a tooltip, see the slot section if you want to slot HTML into the tooltip rather than use plain text.

html
<KSelect
  label="Name"
  :label-attributes="{
    help: 'I use the KLabel `help` prop',
    'data-testid': 'test'
  }"
  :items="items"
/>

appearance

There are three styles of selects, select and dropdown (default) which are filterable, and lastly button which is not.

The dropdown appearance style has a selected item object. You can deselect the item by clicking the Clear icon.

html
<KSelect :items="items" />

The select style displays the selected item in the text box and also displays a chevron. To allow deselecting the item, you need to set the clearable prop to true. See clearable for an example.

html
<KSelect appearance="select" :items="items" />

The button style triggers the dropdown on click and you cannot filter the entries.

html
<KSelect appearance="button" :items="items" />

clearable

The clearable prop is used to enable deselecting the selected item when appearance is 'select'. Defaults to false.

html
<KSelect appearance="select" :items="items" clearable />

buttonText

You can configure the button text when an item is selected, if appearance is type button.

html
<KSelect
  appearance="button"
  width="225"
  @selected="item => handleItemSelect(item)"
  :buttonText="`Show ${mySelect} per page`"
  :items="items"
/>

<script lang="ts">
import { defineComponent } from 'vue'

export default defineComponent({
  data() {
    return {
      mySelect: '',
      items: [{
        label: '25',
        value: '25'
      }, {
        label: '50',
        value: '50'
      }]
    }
  },
  methods: {
    handleItemSelect (item) {
      this.mySelect = item.label
    }
  }
})
</script>

width

You can pass a width string for the dropdown. By default the width is 200px. This is the width of the input, dropdown, and selected item. Currently we support numbers (will be converted to px), auto, and percentages for width.

NOTE

Because we are controlling the widths of multiple elements, we recommend using this prop to control the width instead of explicitly adding classes or styles to the KSelect component.

html
<KSelect width="350" :items="items" />

You can pass a dropdownMaxHeight string for the dropdown. By default, the dropdownMaxHeight is 300px. This is the maximum height of the KSelect dropdown when open. You can pass a number (will be converted to px), auto, percentages, or vh units.

html
<KSelect width="250" :items="items" dropdown-max-height="150" />

Adds informational text to the bottom of the dropdown options which remains visible even if the content is scrolled. Can also be slotted.

html
<KSelect dropdown-footer-text="Sticky dropdown footer text" :items="items" width="250" />

By default, the dropdown footer text will be stuck to the bottom of the dropdown and will always be visible even if the dropdown content is scrolled.

If you want to override the behaviour and have the footer text at the end of the dropdown list, use the value static. This ensures the footer text is visible only when the user scrolls to view the bottom of the list.

Accepted values: sticky (default) and static.

html
<KSelect dropdown-footer-text-position="static" dropdown-footer-text="Static dropdown footer text" :items="items" width="250" />

positionFixed

Use fixed positioning of the popover to avoid content being clipped by parental boundaries - defaults to true. See KPop docs for more information.

enableFiltering

Use this prop to control whether or not the KSelect component with an appearance prop set to a value of select or dropdown allows filtering. By default, filtering is enabled for dropdown appearance and is disabled for select appearance.

button style appearance does not have filter support because it is a button.

html
<KSelect :items="items" :enable-filtering="false" />

<KSelect :items="items" appearance="select" :enable-filtering="true" />

filterFunc

Use this prop to override the default filter function if you want to do something like filter on an attribute other than label. Your filter function should take as parameter a JSON object containing the items to filter on (items) and the query string (query) and return the filtered items. See Slots for an example.

js
myCustomFilter ({ items, query }) {
  return items.filter(anItem => anItem.label.includes(query))
}

NOTE

filterFunc does not work with autosuggest enabled. For autosuggest, you are in charge of filtering the options, so KSelect won't filter them internally. See autosuggest for more details.

v-model

KSelect works as regular inputs do using v-model for data binding:

html
<div>
  <KLabel>Value:</KLabel> {{ myVal }}
  <KSelect v-model="myVal" :items="items" />
  <KButton @click="clearIt">Clear</KButton>
</div>

<script lang="ts">
import { defineComponent } from 'vue'

export default defineComponent({
  data() {
    return {
      myVal: 'cats',
    }
  },
  methods: {
    clearIt() {
      this.myVal = ''
    }
  }
})
</script>

autosuggest

Add the autosuggest prop to trigger a query to an API with the filter keyword, and then update items asynchronously as suggestions as the user types. Loading and empty state content can be configured using the loading and empty slots.

html
<KSelect
  autosuggest
  :items="items"
  :loading="loading"
  width="300px"
  appearance="select"
  @query-change="onQueryChange"
>
  <template v-slot:item-template="{ item }">
    <div class="select-item-label">{{ item.label }}</div>
    <div class="select-item-desc">{{ item.label }}</div>
  </template>
  <template v-slot:loading>
    <div>Loading...</div>
  </template>
  <template v-slot:empty>
    <div>No results found</div>
  </template>
</KSelect>

<script>
const allItems = new Array(10).fill().map((_, i) => ({
  label: `Item ${i}`,
  description: `This is the description for item ${i}.`,
  value: `autosuggest-item-${i}`,
  ...(i > 5 && { group: `${i % 2 === 0 ? 'Even items greater than 5' : 'Odd items greater than 5'}` })
}));
export default {
  data() {
    return {
      defaultItems: [],
      items: [],
      loading: false,
    }
  },
  methods: {
    onQueryChange (val) {
      if (val === '' && !this.defaultItems.length) {
        this.loading = true;
        // If query is empty and default items are not fetched, fetch them
        setTimeout(() => {
          this.defaultItems = allItems;
          this.items = this.defaultItems.map(item => Object.assign({}, item));
          this.loading = false;
        }, 200);
        return;
      }
      if (val === '') {
        // If query is empty and default items are fetched, use the default items
        this.items = this.defaultItems.map(item => Object.assign({}, item));
        return;
      }
      this.loading = true;
      // Otherwise fetch items that contain the keyword
      setTimeout(() => {
        this.items =
          allItems
            .filter(item => item.label.toLowerCase().includes(val.toLowerCase()) || item.description.toLowerCase().includes(val.toLowerCase()))
            .map(item => Object.assign({}, item));
        this.loading = false;
      }, 200);
    }
  }
}
</script>

NOTE

The query-change event triggers immediately when the user types in the input. If you need to send API requests in the query-change event handler, you may want to implement a debounce function. The following is an example:

html
<KSelect
  autosuggest
  :items="items"
  :loading="loading"
  width="300px"
  appearance="select"
  @query-change="onQueryChange"
>
  <template v-slot:item-template="{ item }">
    <div class="select-item-label">{{ item.label }}</div>
    <div class="select-item-desc">{{ item.label }}</div>
  </template>
</KSelect>

<script>
function debounce(func, timeout) {
  let timer;
  return function (...args) {
    clearTimeout(timer);
    timer = setTimeout(() => {
      func.apply(this, args);
    }, timeout);
  };
}
const allItems = new Array(10).fill().map((_, i) => ({
  label: `Item ${i}`,
  description: `This is the description for item ${i}.`,
  value: `autosuggest-item-${i}`,
  ...(i > 5 && { group: `${i % 2 === 0 ? 'Even items greater than 5' : 'Odd items greater than 5'}` })
}));
export default {
  data() {
    return {
      defaultItems: [],
      items: [],
      loading: true,
    }
  },
  methods: {
    onQueryChange (val) {
      if (val === '' && !this.defaultItems.length) {
        // If query is empty and default items are not fetched, fetch them
        this.loading = true;
        setTimeout(() => {
          this.defaultItems = allItems;
          this.items = this.defaultItems.map(item => Object.assign({}, item));
          this.loading = false;
        }, 200);
        return;
      }
      if (val === '') {
        // If query is empty and default items are fetched, use the default items
        this.items = this.defaultItems.map(item => Object.assign({}, item));
        return;
      }
      this.debouncedHandler(val);
    },
    debouncedHandler: debounce(function (val) {
      this.loading = true;
      // Fetch items that contain the keyword
      setTimeout(() => {
        this.items =
          allItems
            .filter(item => item.label.toLowerCase().includes(val.toLowerCase()) || item.description.toLowerCase().includes(val.toLowerCase()))
            .map(item => Object.assign({}, item));
        this.loading = false;
      }, 200);
    }, 400)
  }
}
</script>

loading

When autosuggest is enabled, you can use the loading prop to show a loading indicator while fetching data from API. By default, the loading indicator is a spinner icon, and you can implement your own indicator using the loading slot. See autosuggest for an example.

reuseItemTemplate

Use this prop to customize selected item element appearance by reusing content passed through item-template slot. Note: this prop only applies when appearance prop is select (use selected-item-template slot in other cases).

html
<KSelect reuse-item-template appearance="select" :items="items">
  <template #item-template="{ item }">
    <div>
      <span v-if="item.value === 'cats'">🐈</span>
      <span v-if="item.value === 'dogs'">🐕</span>
      <span v-if="item.value === 'bunnies'">🐇</span>
      <div class="select-item-label">{{ item.label }}</div>
    </div>
  </template>
</KSelect>

enableItemCreation

KSelect offers users the ability to add custom item to the list by typing the item they want to and then clicking the ... (Add new value) item at the bottom of the list, which will also automatically select it.

Newly created item will have a label consisting of the user input and a randomly generated id for the value to ensure uniqueness. It will also have an attribute custom set to true. This action triggers an item:added event containing the added item data.

Deselecting the item will completely remove it from the list and underlying data, and trigger a item:removed event containing the removed item's data.

NOTE

You cannot add an item if the label matches the label of a pre-existing item. In that scenario the ... (Add new value) item will not be displayed.

html
<template>
  <KLabel>Added Item:</KLabel> {{ addedItems }}
  <KSelect
    v-model="myVal"
    :items="items"
    enable-item-creation
    @item:added="(item) => trackNewItems(item, true)"
    @item:removed="(item) => trackNewItems(item, false)"
  />
</template>

<script setup lang="ts">
  const myVal = 'cats'
  const addedItems = ref([])

  const trackNewItems = (item, added) => {
    if (added) {
      addedItems.value.push(item)
    } else {
      addedItems.value = addedItems.value.filter(anItem => anItem.value !== item.value)
    }
  }
</script>

Attribute Binding

You can pass any input attribute and it will get properly bound to the element.

html
<KSelect disabled placeholder="type something" :items="[{ label: 'test', value: 'test' }]" />

required

KSelect will display an * to indicate a field is required if you set the required attribute and provide a label. See KLabel's required prop for more information.

NOTE

Text passed in for the label will automatically strip any trailing * when used with the required attribute to try to prevent duplicate asterisks.

html
<KSelect label="Name" required :items="items" />
<KSelect label="Name" required overlay-label :items="items" />

Slots

  • label-tooltip - slot for tooltip content if select has a label and label has tooltip (note: this slot overrides help/info content specified in label-attributes)
  • item-template - The template for each item in the dropdown list
  • selected-item-template - Slot for customizing selected item appearance
  • loading - Slot for the loading indicator
  • empty - Slot for the empty state in the dropdown list
  • dropdown-footer-text - Slot for footer text in the bottom of the dropdown

label-tooltip

If you want to utilize HTML in the select label's tooltip, use the slot.

html
<KSelect label="My Tooltip" :items="items">
  <template #label-tooltip>Brings all the <code>devs</code> to the yard</template>
</KSelect>

Note:

When utilizing the label-tooltip slot, the info KIcon will be shown by default. To utilize the the help icon instead, set the label-attributes help property to any non-empty string value.

html
<KSelect
  label="My Tooltip"
  :label-attributes="{ help: 'true' }"
  :items="items"
>
  <template #label-tooltip>Brings all the <code>devs</code> to the yard</template>
</KSelect>

item-template

You can use the item-template slot to customize the look and feel of your items. Use slots to gain access to the item data.

TIP

If you use the .select-item-label and .select-item-desc classes within the slot as shown in the example below, the dropdown items will inherit preconfigured styles for two-level select items which you're then free to customize.

html
<template>
  <KSelect :items="myItems" width="100%" :filterFunc="customFilter">
    <template v-slot:item-template="{ item }">
      <div class="select-item-label">{{ item.label }}</div>
      <div class="select-item-desc">{{ item.description }}</div>
    </template>
  </KSelect>
</template>

<script lang="ts">
import { defineComponent } from 'vue'

export default defineComponent({
  data() {
    return {
      myItems: this.getItems(5),
    }
  },
  methods: {
    getItems(count) {
      let myItems = []
        for (let i = 0; i < count; i++) {
          myItems.push({
            label: `Item ${i}`,
            value: `item_${i}`,
            description: `${i} - The item's description for number ${i}`
          })
        }
      return myItems
    },
    customFilter (items, queryStr) {
      return items.filter(item => {
        return item.label.toLowerCase().includes(queryStr.toLowerCase()) ||
          item.description.toLowerCase().includes(queryStr.toLowerCase())
      })
    }
  }
})
</script>

selected-item-template

Use this slot to customize appearance of the selected item that appears when the KSelect dropdown is not activated. If present, the slot content takes precedence over the reuseItemTemplate prop.

TIP

You can use the .k-select-selected-item-label class within the slot to leverage preconfigured styles for selected item title which you're then free to customize.

html
<KSelect appearance="select" autosuggest :items="items">
  <template #selected-item-template="{ item }">
    <span v-if="item.value === 'cats'">🐈</span>
    <span v-if="item.value === 'dogs'">🐕</span>
    <span v-if="item.value === 'bunnies'">🐇</span>
    {{ item.label }}
  </template>
  <template #item-template="{ item }">
    <div>
      <span v-if="item.value === 'cats'">🐈</span>
      <span v-if="item.value === 'dogs'">🐕</span>
      <span v-if="item.value === 'bunnies'">🐇</span>
      <div class="select-item-label">{{ item.label }}</div>
    </div>
  </template>
</KSelect>

loading

You can use the loading slot to customize the loading indicator. Note that this only applies when autoggest is true. See autosuggest for an example of this slot.

empty

You can use the empty slot to customize the look of the dropdown list when there is no options. See autosuggest for an example of this slot.

Slot the content of the dropdown footer text. This slot will override the dropdownFooterText prop if provided.

html
<KSelect dropdown-footer-text="I am replaceable" :items="items">
  <template #dropdown-footer-text>
    Come as you are
  </template>
</KSelect>

Events

Eventreturns
selectedselectedItem Object
inputselectedItem Object or null
changeselectedItem Object or null
query-changequery String

Released under the Apache-2.0 License.