<kendo:actionSheet>
A JSP wrapper for Kendo UI ActionSheet.
Configuration Attributes
title java.lang.String
Specifies the title of the component
Example
<kendo:actionSheet title="title">
</kendo:actionSheet>
Configuration JSP Tags
kendo:actionSheet-items
A JavaScript array that contains the ActionSheet's items configuration.
More documentation is available at kendo:actionSheet-items.
Example
<kendo:actionSheet>
<kendo:actionSheet-items></kendo:actionSheet-items>
</kendo:actionSheet>
Event Attributes
close String
Fired when the widget is closed.The event handler function context (available via the this keyword) will be set to the widget instance.
For additional information check the close event documentation.
Example
<kendo:actionSheet close="handle_close">
</kendo:actionSheet>
<script>
function handle_close(e) {
// Code to handle the close event.
}
</script>
open String
Fired when the widget is opened.The event handler function context (available via the this keyword) will be set to the widget instance.
For additional information check the open event documentation.
Example
<kendo:actionSheet open="handle_open">
</kendo:actionSheet>
<script>
function handle_open(e) {
// Code to handle the open event.
}
</script>
Event Tags
kendo:actionSheet-close
Fired when the widget is closed.The event handler function context (available via the this keyword) will be set to the widget instance.
For additional information check the close event documentation.
Example
<kendo:actionSheet>
<kendo:actionSheet-close>
<script>
function(e) {
// Code to handle the close event.
}
</script>
</kendo:actionSheet-close>
</kendo:actionSheet>
kendo:actionSheet-open
Fired when the widget is opened.The event handler function context (available via the this keyword) will be set to the widget instance.
For additional information check the open event documentation.
Example
<kendo:actionSheet>
<kendo:actionSheet-open>
<script>
function(e) {
// Code to handle the open event.
}
</script>
</kendo:actionSheet-open>
</kendo:actionSheet>