Kendo.Mvc.UI.Fluent.ExpansionPanelEventBuilder
Defines the fluent API for configuring the Kendo UI ExpansionPanel for ASP.NET MVC events.
Methods
Expand(System.String)
Fired when the widget is expanded.The event handler function context (available via the this keyword) will be set to the widget instance.
For additional information check the expand event documentation.
Parameters
handler System.String
The name of the JavaScript function that will handle the expand event.
Expand(System.Func<System.Object,System.Object>)
Fired when the widget is expanded.The event handler function context (available via the this keyword) will be set to the widget instance.
For additional information check the expand event documentation.
Parameters
handler System.Func<System.Object,System.Object>
The handler code wrapped in a text tag.
Collapse(System.String)
Fired when the widget is collapsed.The event handler function context (available via the this keyword) will be set to the widget instance.
For additional information check the collapse event documentation.
Parameters
handler System.String
The name of the JavaScript function that will handle the collapse event.
Collapse(System.Func<System.Object,System.Object>)
Fired when the widget is collapsed.The event handler function context (available via the this keyword) will be set to the widget instance.
For additional information check the collapse event documentation.
Parameters
handler System.Func<System.Object,System.Object>
The handler code wrapped in a text tag.
Complete(System.String)
Fired when the animation during collapse/expand is completed.The event handler function context (available via the this keyword) will be set to the widget instance.
For additional information check the complete event documentation.
Parameters
handler System.String
The name of the JavaScript function that will handle the complete event.
Complete(System.Func<System.Object,System.Object>)
Fired when the animation during collapse/expand is completed.The event handler function context (available via the this keyword) will be set to the widget instance.
For additional information check the complete event documentation.
Parameters
handler System.Func<System.Object,System.Object>
The handler code wrapped in a text tag.