I am using kendo window as a popup for displaying the data with width of 1000px. I am able to show the popup fine in Firefox, Chrome and even in IE10 also. But, in IE9 I am not able to show the popup window fine as we expected.
The window height is not getting assigned as we expected.
I am attaching the screen shots.
My code as follows:
Declaration:
<div id="kendopopupAddContact" style="display: none;">
@{
@(Html.Kendo().Window()
.Name("window_AddContact")
.Width(1000)
.Events(e => e
.Close("ContactWindow_close")
)
)
}
</div>
Initialization:
wndNewContact = $("#window_AddContact").kendoWindow({
actions: ["Close"],
Title:"Test",
Events:"onKeyPress",
content: url,
visible: false,
dragable:true,
modal: true
//minHeight:300,
//height:300
}).data("kendoWindow");
Opening:
wndNewContact.open();
Can any one help me please???
Thanks in advance...