DropDownButtonBuilder
Properties
WriteAction - Func
Methods
Text(System.String)
Sets the text content of the button.
Parameters
value - System.String
The value for text content.
Example
@(Html.Kendo().DropDownButton()
.Name("dropdownbutton")
.Text("Paste")
)
Enabled(System.Boolean)
Indicates whether the DropDownButton should be enabled or disabled. By default, it is enabled, unless a disabled="disabled" attribute is detected.
Parameters
value - System.Boolean
The value for Enabled
Icon(System.String)
Defines a name of an existing icon in the Kendo UI theme sprite. The icon will be applied as background image of a span element inside the DropDownButton. The span element can be added automatically by the widget, or an existing element can be used, if it has a k-icon CSS class applied. For a list of available icon names, please refer to the Icons demo.
Parameters
value - System.String
The value for Icon
IconClass(System.String)
Defines a CSS class - or multiple classes separated by spaced - which are applied to a span element inside the DropDownButton. Allows the usage of custom icons.
Parameters
value - System.String
The value for IconClass
ImageUrl(System.String)
Defines a URL, which will be used for an img element inside the DropDownButton. The URL can be relative or absolute. In case it is relative, it will be evaluated with relation to the web page URL.The img element can be added automatically by the widget, or an existing element can be used, if it has a k-image CSS class applied.
Parameters
value - System.String
The value for ImageUrl
Items(System.Action)
Specifies the menu buttons of the DropDownButton.
Parameters
configurator - System.Action<DropDownButtonItemFactory>
The configurator for the items setting.
ItemTemplate(System.String)
Specifies a custom template for the menu items.
Parameters
value - System.String
The value for ItemTemplate
ItemTemplateId(System.String)
Specifies a custom template for the menu items.
Parameters
templateId - System.String
The ID of the template element for ItemTemplate
ItemTemplateView(Microsoft.AspNetCore.Html.IHtmlContent)
Specifies a custom template for the menu items.
Parameters
templateView - Microsoft.AspNetCore.Html.IHtmlContent
The view that contains the template for ItemTemplate
ItemTemplateHandler(System.String)
Specifies a custom template for the menu items.
Parameters
templateHandler - System.String
The handler that returs the template for ItemTemplate
ItemTemplate(Kendo.Mvc.UI.TemplateBuilder)
Specifies a custom template for the menu items.
Parameters
template - TemplateBuilder<TModel>
A Template component that configures the itemtemplate.
Popup(System.Action)
The options that will be used for the popup initialization. For more details about the available options refer to Popup documentation.
Parameters
configurator - System.Action<DropDownButtonPopupSettingsBuilder>
The configurator for the popup setting.
SpriteCssClass(System.String)
Defines a CSS class (or multiple classes separated by spaces), which will be used for applying a background image to a span element inside the DropDownButton. In case you want to use an icon from the Kendo UI theme sprite background image, it is easier to use the icon property.The span element can be added automatically by the widget, or an existing element can be used, if it has a k-sprite CSS class applied.
Parameters
value - System.String
The value for SpriteCssClass
ShowArrowButton(System.Boolean)
Configures the DropDownButton to render a down arrow that opens and closes its popup.
Parameters
value - System.Boolean
The value for ShowArrowButton
ShowArrowButton()
Configures the DropDownButton to render a down arrow that opens and closes its popup.
Messages(System.Action)
Allows localization of the strings that are used in the widget.
Parameters
configurator - System.Action<DropDownButtonMessagesSettingsBuilder>
The configurator for the messages setting.
Size(Kendo.Mvc.UI.ComponentSize)
Sets the size of the component.
Parameters
value - ComponentSize
The value for Size
Rounded(Kendo.Mvc.UI.Rounded)
Sets a value controlling the border radius.
Parameters
value - Rounded
The value for Rounded
FillMode(Kendo.Mvc.UI.FillMode)
Sets a value controlling how the color is applied.
Parameters
value - FillMode
The value for FillMode
ThemeColor(Kendo.Mvc.UI.ThemeColor)
Sets the color of the component according to the applied theme.
Parameters
value - ThemeColor
The value for ThemeColor
Events(System.Action)
Configures the client-side events.
Parameters
configurator - System.Action<DropDownButtonEventBuilder>
The client events action.
Example
@(Html.Kendo().DropDownButton()
.Name("DropDownButton")
.Events(events => events
.Click("onClick")
)
)
ToComponent()
Returns the internal view component.
Expression(System.String)
Sets the name of the component.
Parameters
modelExpression - System.String
Explorer(Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExplorer)
Sets the name of the component.
Parameters
modelExplorer - Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExplorer
Name(System.String)
Sets the name of the component.
Parameters
componentName - System.String
The name.
Deferred(System.Boolean)
Suppress initialization script rendering. Note that this options should be used in conjunction with
Parameters
deferred - System.Boolean
HtmlAttributes(System.Object)
Sets the HTML attributes.
Parameters
attributes - System.Object
The HTML attributes.
HtmlAttributes(System.Collections.Generic.IDictionary)
Sets the HTML attributes.
Parameters
attributes - System.Collections.Generic.IDictionary<String,Object>
The HTML attributes.
ScriptAttributes(System.Object,System.Boolean)
Sets the JavaScript attributes to the initialization script.
Parameters
attributes - System.Object
The JavaScript attributes.
overrideAttributes - System.Boolean
Argument which determines whether attributes should be overriden.
ScriptAttributes(System.Collections.Generic.IDictionary,System.Boolean)
Sets the JavaScript attributes to the initialization script.
Parameters
attributes - System.Collections.Generic.IDictionary<String,Object>
The JavaScript attributes.
overrideAttributes - System.Boolean
Argument which determines whether attributes should be overriden.
Render()
Renders the component in place.
ToHtmlString()
WriteTo(System.IO.TextWriter,System.Text.Encodings.Web.HtmlEncoder)
Parameters
writer - System.IO.TextWriter
encoder - System.Text.Encodings.Web.HtmlEncoder
ToClientTemplate()
AsModule(System.Boolean)
Specifies whether the initialization script of the component will be rendered as a JavaScript module.