Kendo.Mvc.UI.Fluent.AppBarBuilder
Defines the fluent API for configuring the Kendo AppBar for ASP.NET MVC.
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 action that configures the items.
Position(Kendo.Mvc.UI.AppBarPosition)
Defines where in the page the AppBar will be positioned
Parameters
value Kendo.Mvc.UI.AppBarPosition
The value that configures the position.
PositionMode(Kendo.Mvc.UI.AppBarPositionMode)
Defines the type of positioning
Parameters
value Kendo.Mvc.UI.AppBarPositionMode
The value that configures the positionmode.
ThemeColor(Kendo.Mvc.UI.AppBarThemeColor)
Specifies the color of the component
Parameters
value Kendo.Mvc.UI.AppBarThemeColor
The value that configures the 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")
)
%>