I open the RadWindow by the code. Both OpenDownloadFile and OpenDownloadFile1 does not work.
The code is actually copied from my old code. Now my version is 2015Q3. Old code is working fine in old Telerik versions.
IE11 displays error: Object doesn't support property or method '_createDefaultTable'.
Regards
Alfred
01.
<a href=
"javascript:void(0)"
onclick=
"OpenDownloadFile();"
>Run JavaScript Code</a>
02.
03.
function
OpenDownloadFile() {
04.
var
wndManager = $find(
"<%=RadWindowManager1.ClientID%>"
);
05.
var
oWnd = wndManager.open(
"Popup_DownloadFile.aspx"
,
"RadWindow1"
);
06.
oWnd.center();
07.
08.
}
09.
10.
function
OpenDownloadFile1() {
11.
var
oWnd = radopen(
"Popup_DownloadFile.aspx?ID="
+ FileID,
null
);
// open radwindow
12.
oWnd.set_title(
"Download File"
);
13.
oWnd.set_visibleStatusbar(
false
);
14.
oWnd.setSize(700, 1000);
15.
oWnd.moveTo(100, 50);
16.
window.scrollTo(100, 100)
17.
18.
}