Hello!
I'm experiencing weird issue with RadUpload control. When the page initially loads, everythings looks fine, but after I click "Load" button, the postback occures and "Browse..." button of the RadUploader seems to lose it's css style.
I'm stuck with this one, so I really hope you guys can help me out. Thanx a lot in advance!
Here's the content of my aspx page:
<
asp:Content ID="Content1" ContentPlaceHolderID="plcContent" runat="server">
<
style type="text/css">
.RadUpload_artUpload .ruBrowse
{
background-color: #dcf0ff;
border: solid 2px #aadcff;
height: 23px;
width: 86px;
}
</
style>
<asp:Button ID="btnLoad" runat="server" Text="Load"/>
<telerik:RadUpload ID="ruFileUpload" MaxFileInputsCount="1" Skin="artUpload" ControlObjectsVisibility="None" runat="server" Localization-Select="Browse..." EnableEmbeddedSkins="false" />
</
asp:Content>