$(document.body).append('<div id="DetailWnd"></div>');
var wnd = $("#DetailWnd").kendoWindow({
modal: true,
actions: ["Minimize", "Maximize", "Close"],
width: "800px",
height: "540px",
title: "Scenario Details",
iframe: true,
visible: true,
content: "showdetails.aspx?ids=" + dataItem.IdScenario,
animation: {
open: { effects: "fadeIn" },
duration: 700
},
close: DetailClosed
});
In IE8 if i click the filter icon the filter menu is not displayed, if i comment out the height attribute is working as expected.
with a specific height Is working as expected on IE9 and FF 18.0.2.
If i run the page showdetails.aspx alone is working as expected, so i think the problem is caused by kendoWindow widget.
My client is using IE8 and i need to limit the height of the grid how can I achieve this?
Thank you
Regards
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="kendo_UI.WebForm1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
head
runat
=
"server"
>
<
title
></
title
>
<
link
href
=
"~/Styles/kendo/kendo.common.min.css"
rel
=
"stylesheet"
/>
<
link
href
=
"~/Styles/kendo/kendo.default.min.css"
rel
=
"stylesheet"
/>
<
script
type
=
"text/javascript"
src
=
"~/Scripts/jquery-1.9.1.min.js"
></
script
>
<
script
type
=
"text/javascript"
src
=
"~/Scripts/kendo/kendo.all.min.js"
></
script
>
</
head
>
<
body
>
<
form
id
=
"form1"
runat
=
"server"
>
<
div
>
<
textarea
id
=
"editor"
rows
=
"10"
cols
=
"30"
> </
textarea
>
<
script
type
=
"text/javascript"
>
$(document).ready(function () {
$("#editor").kendoEditor();
});
</
script
>
</
div
>
</
form
>
</
body
>
</
html
>
I am not able to add page header and footer for the splitview in tablet, is there any alternate way.