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
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