visible
Checks whether the actionsheet is visible
Returns
Boolean
True when the actionsheet is visible
Example
<div id="actionsheet">CONTENT</div>
<script>
var actionsheet = $("#actionsheet").kendoActionSheet().data("kendoActionSheet");
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(actionsheet.visible());
</script>
In this article