show

Triggered when a Dialog has finished its opening animation.

Example - subscribe to the "show" event during initialization

<div id="dialog"></div>
<script>
$("#dialog").kendoDialog({
  title: "Kendo Dialog Component",
  content: "This is your Kendo Dialog.",
  show: function() {
    // open animation has finished playing
  }
});
</script>

Example - subscribe to the "show" event after initialization

<div id="dialog"></div>
<script>
function dialog_show() {
  // open animation has finished playing
}
$("#dialog").kendoDialog({
  title: "Kendo Dialog Component",
  content: "This is your Kendo Dialog."
});
var dialog = $("#dialog").data("kendoDialog");
dialog.bind("show", dialog_show);
</script>
In this article