open

Opens a Dialog and brings it on top of any other open Dialog or Window instances by calling toFront internally.

Returns

kendo.ui.Dialog Returns the dialog object to support chaining.

Example

Open In Dojo
<div id="dialog"></div>
<script>
$("#dialog").kendoDialog({
  title: "Kendo Dialog Component",
  content: "This is your Kendo Dialog.",
  visible: false
});
var dialog = $("#dialog").data("kendoDialog");
dialog.open();
</script>
In this article