• Getting Started
  • Components
    • Barcodes
    • Buttons
    • Chartsupdated
    • Conversational UIupdated
    • Data Query
    • Date Inputsupdated
    • Date Math
    • Dialogs
    • Drawing
    • Dropdownsupdated
    • Editor
    • Excel Export
    • File Saver
    • Filter
    • Gantt
    • Gauges
    • Gridupdated
    • Icons
    • Indicators
    • Inputsupdated
    • Labels
    • Layout
    • ListBox
    • ListView
    • Map
    • Menus
    • Navigation
    • Notification
    • Pager
    • PDF Export
    • PDFViewer
    • PivotGridupdated
    • Popup
    • ProgressBars
    • Ripple
    • Schedulerupdated
    • ScrollView
    • Sortable
    • Spreadsheetupdated
    • ToolBar
    • Tooltips
    • TreeList
    • TreeView
    • Typography
    • Uploads
    • Utilities
  • Styling & Themes
  • Common Features
  • Project Setup
  • Knowledge Base
  • Sample Applications
  • FAQ
  • Troubleshooting
  • Updates
  • Changelogs
New to Kendo UI for Angular? Start a free 30-day trial

PopupSettings

Used for configuring the popup settings.

@Component({
selector: 'my-app',
template: `
<kendo-splitbutton [data]="listItems" [popupSettings]="{ animate: animate, popupClass: popupClass, appendTo: 'component' }">
   SplitButton
</kendo-splitbutton>
`
})
class AppComponent {
  public animate: boolean = false;
  public popupClass: string = 'customClass';
  public listItems: Array<any> = [{
     text: 'item1'
 }, {
     text: 'item2'
 }]
}
NameTypeDefaultDescription

align?

"left" | "right" | "center"

Controls the alignment of the popup. By default, the popup is left aligned.

animate?

boolean

Controls the popup animation. By default, the open and close animation are enabled.

appendTo?

ViewContainerRef | "root" | "component"

Controls the popup container. By default, the popup will be appended to the root component.

popupClass?

string

Specifies a list of CSS classes used for styling the popup.

In this article

Not finding the help you need?