open
Opens a Window and brings it on top of any other open Window instances by internally calling toFront.
Returns
kendo.ui.Window
- Returns the Window object to support chaining.
Example
<div id="dialog"></div>
<script>
$("#dialog").kendoWindow({
visible: false
});
var dialog = $("#dialog").data("kendoWindow");
dialog.open();
</script>