We have a rad upload control which shows the full upload message in IE9 - see the attachment fullbutton.jpg.
When in IE8, or IE9 with comp on, the button looks like what's in attachment halfbutton.jpg. There is no upload text, and all you can see is the paper clip.
I've tried setting EnableFileInputSkinning to both true and false, plus tried css class settings for rubrowse and rubutton and such that I've found on the web, all to no avail.
The upload control is being used in a user control, and is part of the content of a radwindow. Here is a code sample - I didn't include the whole page.
Can you tell me what could be causing this?
When in IE8, or IE9 with comp on, the button looks like what's in attachment halfbutton.jpg. There is no upload text, and all you can see is the paper clip.
I've tried setting EnableFileInputSkinning to both true and false, plus tried css class settings for rubrowse and rubutton and such that I've found on the web, all to no avail.
The upload control is being used in a user control, and is part of the content of a radwindow. Here is a code sample - I didn't include the whole page.
<
telerik:RadWindowManager
ID
=
"RadWindowManager1"
runat
=
"server"
Overlay
=
"true"
>
<
Windows
>
<
telerik:RadWindow
ID
=
"RadWindow1"
runat
=
"server"
Animation
=
"Fade"
Behavior
=
"None"
VisibleOnPageLoad
=
"false"
Behaviors
=
"Close"
Modal
=
"true"
Width
=
"490"
Height
=
"565"
DestroyOnClose
=
"true"
VisibleStatusbar
=
"false"
KeepInScreenBounds
=
"true"
>
<
ContentTemplate
>
...
<
script
type
=
"text/javascript"
>
try {
Telerik.Web.UI.RadAsyncUpload.Modules.Silverlight.isAvailable = function () { return false; }
} catch (e) { }
</
script
>
<
telerik:RadAsyncUpload
ID
=
"fuDocument"
runat
=
"server"
MaxFileInputsCount
=
"1"
ReadOnlyFileInputs
=
"true"
OnClientFileUploaded
=
"triggerRefresh"
OnClientFileUploadRemoving
=
"triggerCancel"
MaxFileSize
=
"4194304"
OnClientFileSelected
=
"triggerSelected"
OnClientValidationFailed
=
"fileValidationFailed"
Localization-Select
=
""
>
</
telerik:RadAsyncUpload
>
...
</
ContentTemplate
>
</
telerik:RadWindow
>
Can you tell me what could be causing this?