toFront

Increases the z-index style of a Dialog wrapper to bring the instance on top of other open Dialogs. This method is executed automatically when the open method is used.

Returns

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

Example

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