I wanted to initialize a window with mvvm but the problem is that it defaults to loading the content into a iframe.
I tried disabling the iframe with data-iframe="false" but it seems to ignore this.
Here is a snipet of the mvvm html
<div data-role="window"
data-title="Loading..."
data-actions="['Close']"
data-draggable="true"
data-resizable="false"
data-iframe="false"
data-content="fmwEquipmentInformation.html"
id="fmwEquipmentInformation">
</div>
In javascript I attempt to intialize with...
kendo.init(jQuery("#fmwEquipmentInformation"));
This loads the window but loads the content into a iframe which causes problems trying to bind the content div to data afterwards.