Kendo.Mvc.UI.Fluent.ResponsivePanelBuilder
Defines the fluent API for configuring the Kendo UI ResponsivePanel
Methods
AutoClose(System.Boolean)
If set to false the widget will not close when the page content is touched, after it was opened on a mobile device. You will need to call the close method when the panel needs to close.
Parameters
value System.Boolean
The value for AutoClose
Breakpoint(System.Double)
Specifies the page width at which the widget will be hidden and its toggle button will become visible.
Parameters
value System.Double
The value for Breakpoint
ToggleButton(System.String)
Specifies the selector for the toggle button that will show and hide the responsive panel.
Parameters
value System.String
The value for ToggleButton
Content(System.String)
The content of the responsive panel
Parameters
value System.String
The value for Content
Orientation(Kendo.Mvc.UI.ResponsivePanelOrientation)
Specifies the direction from which the hidden element will open up, once the toggle button has been activated
Parameters
value Kendo.Mvc.UI.ResponsivePanelOrientation
The value for Orientation
Events(System.Action<Kendo.Mvc.UI.Fluent.ResponsivePanelEventBuilder>)
Configures the client-side events.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.ResponsivePanelEventBuilder>
The client events action.
Example (ASPX)
@(Html.Kendo().ResponsivePanel()
.Name("ResponsivePanel")
.Events(events => events
.Close("onClose")
)
)