This is a migrated thread and some comments may be shown as answers.

[Solved] Kendo UI Popup window IE9 issue

0 Answers 30 Views
Window
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
koteswararao
Top achievements
Rank 1
koteswararao asked on 18 Feb 2013, 07:39 AM
Hello all,
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...


Tags
Window
Asked by
koteswararao
Top achievements
Rank 1
Share this question
or