<
telerik:RadFileExplorer
runat
=
"server"
ID
=
"RadFileExplorer1"
Height
=
"125px"
Width
=
"100%"
Skin
=
"WebBlue"
FilterTextBoxLabel
=
"Filter By"
meta:resourcekey
=
"labFilterBy"
EnableCreateNewFolder
=
"False"
EnableAsyncUpload
=
"True"
EnableOpenFile
=
"False"
ExplorerMode
=
"FileTree"
PageSize
=
"50"
>
<
Configuration
EnableAsyncUpload
=
"true"
MaxUploadFileSize
=
"52428800"
/>
</
telerik:RadFileExplorer
>
We have upgraded to version 712 and now we do receive the 'Sys' is undefined error everytime the close method of radwindow is called. The window gets closed; and after that the error is raised.
Below is the code we use with all previous versions (v < 712) of ASP.NET Ajax:
//----------------------------------------
function GetRadWindow()
{
var oWindow = null;
if (window.radWindow) oWindow = window.radWindow;
else if (window.frameElement.radWindow) oWindow = window.frameElement.radWindow;
return oWindow;
}
var oWnd = GetRadWindow();
if (oWnd) oWnd.close();
//----------------------------------------
Please let us know what to do ASAP.
Thanks.
RadComboBoxItem selectedItem = FindItemByValue(cachedSelectedValue);
if
(selectedItem ==
null
)
{
throw
new
ArgumentOutOfRangeException(
"value"
,
"Selection out of range"
);
}
I have a button skin with a prominently rounded edge (padding-right: 14px). This portion of the button does not respond to clicks. This seems to affect all skins and I have replicated it with the default skin (although it is much less noticeable as it has less padding).
I am using RAD Controls Q2 in IE8 and IE8 with the IE7 compatibility meta tag.