Kendo.Mvc.UI.Fluent.AppBarBuilder
Defines the fluent API for configuring the Kendo UI AppBar
Methods
Items(System.Action<Kendo.Mvc.UI.Fluent.AppBarItemFactory>)
An array with objects representing the appbar items.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.AppBarItemFactory>
The configurator for the items setting.
Position(Kendo.Mvc.UI.AppBarPosition)
Defines where in the page the AppBar will be positioned
Parameters
value Kendo.Mvc.UI.AppBarPosition
The value for Position
PositionMode(Kendo.Mvc.UI.AppBarPositionMode)
Defines the type of positioning
Parameters
value Kendo.Mvc.UI.AppBarPositionMode
The value for PositionMode
ThemeColor(Kendo.Mvc.UI.AppBarThemeColor)
Specifies the color of the component
Parameters
value Kendo.Mvc.UI.AppBarThemeColor
The value for ThemeColor
Events(System.Action<Kendo.Mvc.UI.Fluent.AppBarEventBuilder>)
Configures the client-side events.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.AppBarEventBuilder>
The client events action.
Example (ASPX)
@(Html.Kendo().AppBar()
.Name("AppBar")
.Events(events => events
.Resize("onResize")
)
)