Kendo.Mvc.UI.Fluent.ActionSheetBuilder
Defines the fluent API for configuring the Kendo UI ActionSheet
Methods
Items(System.Action<Kendo.Mvc.UI.Fluent.ActionSheetItemFactory>)
A JavaScript array that contains the ActionSheet's items configuration.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.ActionSheetItemFactory>
The configurator for the items setting.
Title(System.String)
Specifies the title of the component
Parameters
value System.String
The value for Title
Events(System.Action<Kendo.Mvc.UI.Fluent.ActionSheetEventBuilder>)
Configures the client-side events.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.ActionSheetEventBuilder>
The client events action.
Example (ASPX)
@(Html.Kendo().ActionSheet()
.Name("ActionSheet")
.Events(events => events
.Close("onClose")
)
)