ToolBarSplitButtonComponent
Represents the Kendo UI ToolBar SplitButton for Angular.
Use the ToolBar SplitButton to create a split button with a main button and a drop-down list of actions in the ToolBar.
<kendo-toolbar>
<kendo-toolbar-splitbutton text="Paste" [data]="data">
</kendo-toolbar-splitbutton>
</kendo-toolbar>
Selector
kendo-toolbar-splitbutton
Export Name
Accessible in templates as #kendoToolBarSplitButtonInstance="kendoToolBarSplitButton"
Inputs
Name | Type | Default | Description |
---|---|---|---|
arrowButtonClass |
|
Sets the CSS classes for the arrow button that opens the popup.
Accepts values supported by | |
arrowButtonIcon |
|
Sets the name of the font icon for the arrow button. | |
arrowButtonSvgIcon |
|
Sets the | |
buttonClass |
|
Sets the CSS classes for the main button.
Accepts values supported by | |
data |
|
Sets the data of the SplitButton (see example).
| |
disabled |
|
When | |
fillMode |
|
|
Sets the fill mode for the button. The fill mode represents the background and border styles. |
icon |
|
Sets the icon rendered next to the button text (see example). | |
iconClass |
|
Sets a custom CSS class icon rendered next to the button text. | |
imageUrl |
|
Sets a URL for the image displayed next to the button text. | |
popupSettings |
|
Configures the popup of the SplitButton.
Accepts a | |
showIcon |
|
|
Controls the button icon visibility. |
showText |
|
|
Controls the button text visibility. |
svgIcon |
|
Sets the | |
text |
|
Sets the text of the SplitButton (see example). | |
textField |
|
|
Sets the text field for the button-list popup. |
themeColor |
|
|
Sets the predefined theme color for the button. The theme color applies to the background, border, and text. |
Events
Name | Type | Description |
---|---|---|
buttonClick |
|
Fires when the user clicks the main button. |
close |
|
Fires when the popup is about to close. This event is preventable. If you cancel the event, the popup stays open. |
itemClick |
|
Fires when the user clicks a drop-down list item. The event data contains the clicked item's data. |
open |
|
Fires when the popup is about to open. This event is preventable. If you cancel the event, the popup stays closed. |