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

Kendo Window not working

3 Answers 399 Views
Window
This is a migrated thread and some comments may be shown as answers.
Howard
Top achievements
Rank 1
Howard asked on 28 Nov 2012, 11:41 PM
Hi Kendo Team,

After I upgraded to 2012.3.1121 build, the window stopped working. i checked in chrome and it is due to the html 5 syntax that you have put in 
-webkit-transform: scale(0.01);
Please see the attached picture file.

This is my code to open the window.
<script type="text/javascript" language="javascript">
    function WorkshopSettingsSuccess() {
        $('#WorkshopSettings').data('kendoWindow').refresh();
        $('#WorkshopSettings').data('kendoWindow').center().open();
    };
</script>
 
<div id="menu_WorkshopList" class="menu2">
    <ul id="menuworkshop">
        <li>@Html.ActionLink("Add Job", "Index", "Home") </li>
        <li id="menu_Settings">
            @Ajax.ActionLink("Settings", "WorkshopSettings", "RepairAndMaintenanceSettings",
                new AjaxOptions
                {
                    UpdateTargetId = "WorkshopSettings",
                    InsertionMode = InsertionMode.Replace,
                    HttpMethod = "GET",
                    OnSuccess = "WorkshopSettingsSuccess"
                })
        </li>
    </ul>
</div>
<div id="workshopFilterBucket">
    @{Html.RenderAction("WorkshopFilter", "RepairAndMaintenanceList", new { filterMode = "1" });}
</div>
<div id="workshopbucket">
    @{Html.RenderPartial("RepairAndMaintenanceList/_WorkshopJobList");}
</div>
 
@{Html.Kendo().Window()
    .Name("WorkshopSettings")
    .Title("Settings")
    .Draggable(true)
    .Visible(false)
    .Modal(true)
    .Height(300)
    .Width(1200)   
    .Content(@<text>
        <div id="WorkshopSettings">
        </div>
        </text>)
    .Render();
    }


Please let me know how to fix it.

Thank you

3 Answers, 1 is accepted

Sort by
0
Kamen Bundev
Telerik team
answered on 29 Nov 2012, 02:22 PM
Hello Niroj,

This issue should be already fixed in the build you have (2012.3.1121), can you send a sample project or a live URL where we can check what is going on and help you fix it?

Greetings,
Kamen Bundev
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Eric J at FADV
Top achievements
Rank 1
answered on 03 Dec 2012, 02:26 PM
I am having  the same issue. The kendoWIndow works fine in Internet Explorer 9. but in Crome and Firefox it looks just like the screenshot Niroj attached, it's like a pixel in size.
0
Eric J at FADV
Top achievements
Rank 1
answered on 03 Dec 2012, 08:19 PM
Solution: updating the jQuery version to 1.8+ corrected the Window problem for me.
Tags
Window
Asked by
Howard
Top achievements
Rank 1
Answers by
Kamen Bundev
Telerik team
Eric J at FADV
Top achievements
Rank 1
Share this question
or