height:450,
sortable: true,
filterable: true,
scrollable: true
this grid is in an apsx page displayed by a kendo window created dinamically on user click as following:
$(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