• Introduction
  • Getting Started
  • Vue 2 End of Support
  • Native Components
    • Animation
    • Buttons
    • Chartsupdated
    • Conversational UInew
    • Data Query
    • Data Tools
    • Date Inputs
    • Date Math
    • Dialogs
    • Drawing
    • Dropdownsupdated
    • Editor
    • Excel Export
    • File Saver
    • Form
    • Gauges
    • Grid
    • Icons
    • Indicators
    • Inputs
    • Labels
    • Layoutupdated
    • ListBox
    • ListView
    • Notification
    • PDF Processing
    • Popup
    • Progress Bars
    • Scheduler
    • ScrollView
    • Tooltip
    • TreeList
    • TreeView
    • Upload
  • Wrapper Components
  • Sample Applications
  • Styling & Themes
  • Common Features
  • Project Setup
  • Knowledge Base
  • Changelog
  • FAQ
  • Troubleshooting
New to Kendo UI for Vue? Start a free 30-day trial

DropDownButtonProps

NameTypeDefaultDescription

accessKey?

string

Specifies the accessKey of the main button.

ariaLabel?

string

Specifies the ariaLabel of the main button. By default it is set to the text of the DropDownButton and 'dropdownbutton'.

buttonClass?

string

Sets the className of the main button.

dir?

string

Sets the direction of the component.

disabled?

boolean

Determines whether the component is disabled (see example).

fillMode?

"null" | string

solid

Configures the fillMode of the Button.

The available options are:

  • solid
  • outline
  • flat
  • link
  • null—Does not set a fillMode className.

icon?

string

Defines an icon that will be rendered next to the main button text (see example).

iconClass?

string

Defines an icon with a custom CSS class that will be rendered next to the main button text (see example).

imageUrl?

string

Defines the location of an image that will be displayed next to the main button text (see example).

item?

any

Defines a named slot string, functional or class component which is used for rendering items (see example). The default rendering includes an icon, an image, and text.

itemRender?

any

Fires when a dropdown list button item is about to be rendered. Use it to override the default appearance of the list items. if item prop is not declared, itemRender behaves like item, for backward compatibility with versions before 4.2.0

items?

any[]

Specifies the list items (see example).

look?

string

Changes the visual appearance by using alternative styling options (see example).

onBlur?

(event: DropDownButtonBlurEvent) => void

Fires when the component is blurred (see example).

onClose?

(event: DropDownButtonCloseEvent) => void

Fires when the popup which contains the items is closed (see example).

onFocus?

(event: DropDownButtonFocusEvent) => void

Fires when the component is focused (see example).

onItemclick?

(event: DropDownButtonItemClickEvent) => void

Fires when an item is clicked (see example).

onOpen?

(event: DropDownButtonOpenEvent) => void

Fires when the popup which contains the items is opened (see example).

opened?

boolean

Opens the popup of the DropDownButton if set to true.

popupSettings?

ButtonsPopupSettings

Configures the popup (see example).

primary?

boolean

Adds visual weight to the button and makes it primary (see example).

rounded?

"null" | string

medium

Configures the roundness of the Button.

The available options are:

  • small
  • medium
  • large
  • circle
  • full
  • null—Does not set a rounded className.

shape?

"null" | string

rectangle

Configures the shape of the Button.

The available options are:

  • rectangle
  • square
  • null—Does not set a shape className.

size?

"null" | string

medium

Configures the size of the Button.

The available options are:

  • small
  • medium
  • large
  • null—Does not set a size className.

svgIcon?

SVGIcon

Defines an SVGIcon to be rendered within the DropDownButton.

tabIndex?

number

Specifies the tabIndex of the main button.

text?

any

Specifies the text of the main button (see example).

textField?

string

Configures the field that will be used for the text of the items. textField has to be used together with the items prop (see example).

themeColor?

"null" | string

base

Configures the themeColor of the Button.

The available options are:

  • base
  • primary
  • secondary
  • tertiary
  • info
  • success
  • warning
  • dark
  • light
  • inverse
  • null—Does not set a themeColor className.