Kendo.Mvc.UI.Fluent.BottomNavigationBuilder
Defines the fluent API for configuring the Kendo UI BottomNavigation
Methods
Border(System.Boolean)
Toggles the border of the widget.
Parameters
value System.Boolean
The value for Border
Shadow(System.Boolean)
Toggles the shadow of the widget.
Parameters
value System.Boolean
The value for Shadow
Shadow
Toggles the shadow of the widget.
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 configurator for the items setting.
Template(System.String)
Sets a custom template for the items.
Parameters
value System.String
The value for Template
TemplateId(System.String)
Sets a custom template for the items.
Parameters
templateId System.String
The ID of the template element for Template
Fill(Kendo.Mvc.UI.BottomNavigationFill)
Defines the fill of the component
Parameters
value Kendo.Mvc.UI.BottomNavigationFill
The value for Fill
PositionMode(Kendo.Mvc.UI.BottomNavigationPositionMode)
Defines the position of the component
Parameters
value Kendo.Mvc.UI.BottomNavigationPositionMode
The value for PositionMode
ItemFlow(Kendo.Mvc.UI.BottomNavigationItemFlow)
Defines the iteFLow of the component
Parameters
value Kendo.Mvc.UI.BottomNavigationItemFlow
The value for ItemFlow
ThemeColor(Kendo.Mvc.UI.BottomNavigationThemeColor)
Defines the theme color of the component
Parameters
value Kendo.Mvc.UI.BottomNavigationThemeColor
The value for ThemeColor
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")
)
)