Kendo.Mvc.UI.Fluent.BottomNavigationBuilder
Defines the fluent API for configuring the Kendo BottomNavigation for ASP.NET MVC.
Methods
Border(System.Boolean)
Toggles the border of the widget.
Parameters
value System.Boolean
The value that configures the border.
Shadow(System.Boolean)
Toggles the shadow of the widget.
Parameters
value System.Boolean
The value that configures the shadow.
Items(System.Action<Kendo.Mvc.UI.Fluent.BottomNavigationItemFactory>)
Specifies the items of the BottomNavigation component.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.BottomNavigationItemFactory>
The action that configures the items.
Template(System.String)
Sets a custom template for the items.
Parameters
value System.String
The value that configures the template.
TemplateId(System.String)
Sets a custom template for the items.
Parameters
value System.String
The value that configures the template.
Fill(Kendo.Mvc.UI.BottomNavigationFill)
Defines the fill of the component
Parameters
value Kendo.Mvc.UI.BottomNavigationFill
The value that configures the fill.
ThemeColor(Kendo.Mvc.UI.BottomNavigationThemeColor)
Specifies the color of the component
Parameters
value Kendo.Mvc.UI.BottomNavigationThemeColor
The value that configures the themecolor.
ItemFlow(Kendo.Mvc.UI.BottomNavigationItemFlow)
Specifies the iteFLow of the component
Parameters
value Kendo.Mvc.UI.BottomNavigationItemFlow
The value that configures the itemflow.
PositionMode(Kendo.Mvc.UI.BottomNavigationPositionMode)
Specifies the positionMode of the component
Parameters
value Kendo.Mvc.UI.BottomNavigationPositionMode
The value that configures the positionmode.
Events(System.Action<Kendo.Mvc.UI.Fluent.BottomNavigationEventBuilder>)
Configures the client-side events.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.BottomNavigationEventBuilder>
The client events action.
Example (ASPX)
<%= Html.Kendo().BottomNavigation()
.Name("BottomNavigation")
.Events(events => events
.Select("onSelect")
)
%>