iframe Boolean

Explicitly states whether a content iframe will be created. For more information, refer to the documentation on using iframes.

Example - loading the full page

<div id="dialog"></div>
<script>
$("#dialog").kendoWindow({
  content: "https://www.telerik.com/",
  iframe: true
});
</script>
In this article