This is a migrated thread and some comments may be shown as answers.

Upload Feature of RadFileExplorer

1 Answer 78 Views
FileExplorer
This is a migrated thread and some comments may be shown as answers.
Robert
Top achievements
Rank 1
Robert asked on 31 Oct 2011, 07:10 PM
I'm working with the RadFileExplorer, and with the encapsulated upload control within the RadFileExplorer;

If a Black template is applied to the RadFileExplorer, the "remove" text for the remove button is washed out on the upload control - if a default template is utilized for the upload feature, the "remove" text for the remove button is displayed;  

I'm writing to ask if the "remove" text can be applied with C# programmatically, etc.

Thanks in advance for any insight;  Best regards - Rob

1 Answer, 1 is accepted

Sort by
0
Accepted
Bozhidar
Telerik team
answered on 02 Nov 2011, 09:17 AM
Hi Robert ,

Thank you for reporting that issue to us. To fix it, you should use a little piece of CSS in the head section of your document:

<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head runat="server">
    <title></title>
    <style type="text/css">
        .rfeUploadContainer .RadUpload_Black .ruRemove
        {
            color: #000;
        }
         
        .RadForm .rfeUploadContainer .RadUpload_Black .ruRemove
        {
            color: #fff;
        }
         
        .RadForm_Black.rfdZone .rfeUploadInfoPanel
        {
            color: #000;
        }
         
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <asp:ScriptManager ID="sm1" runat="server" />
    <div>
        <telerik:RadFormDecorator runat="server" Skin="Black" DecoratedControls="All" />
        <telerik:RadFileExplorer ID="RadFileExplorer1" runat="server" EnableAsyncUpload="true"
            Skin="Black">
            <Configuration ViewPaths="~/" DeletePaths="~/" UploadPaths="~/" />
        </telerik:RadFileExplorer>
    </div>
    </form>
</body>
</html>

Your Telerik points are updated for the bug report.

Best wishes,
Bozhidar
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now
Tags
FileExplorer
Asked by
Robert
Top achievements
Rank 1
Answers by
Bozhidar
Telerik team
Share this question
or