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

Raddock Title Not Shown in Firefox

2 Answers 42 Views
Dock
This is a migrated thread and some comments may be shown as answers.
Mhairi
Top achievements
Rank 1
Mhairi asked on 09 Feb 2011, 12:35 PM
Hello,

I have a RadDock control wrapped in a usercontrol, Dashboard1.

Dashboard1 is on a page with a DetailsView that allows a user to setup information about their dashboard, such as Name and Description.

The requirement is that the 'dashboard' is hidden until the user clicks the 'Edit' button on the DetailsView. ( this.Dashboard1.Visible = this.dvDashboard.CurrentMode == DetailsViewMode.Edit;)

However, when the edit button is clicked and the dashboard is set to visible, in FireFox the Title is not shown.

The HTML output looks as follows:
<div class="rdTitleBar rdDraggable" id="ctl00_ContentPlaceHolder1_Dashboard1_RadDock86824b65a96a5a46c1aa890a1f01e87b0292_T" style="cursor: move;">
                        <em style="width: 0px;">Weather</em>

It's the width:0px that FireFox dislikes. I was wondering what circumstances would cause this with to be 0 (until the dock is moved and the title then appears).

2 Answers, 1 is accepted

Sort by
0
Accepted
Pero
Telerik team
answered on 10 Feb 2011, 12:26 PM
Hi Mhairi,

This is a very strange issue. Would it be possible to send us a sample project that demonstrates the issue?
Applying the following CSS on the page will fix the issue, but please if possible send a code sample so we can debug the issue locally.
<style type="text/css">
    .rdTitleBar EM
    {
        width: auto !important;
    }
</style>

Kind regards,
Pero
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
0
Mhairi
Top achievements
Rank 1
answered on 10 Feb 2011, 12:54 PM
Hi Pero,

Not sure why it's happening, but your fix worked perfectly.

Many thanks,

Mhairi
Tags
Dock
Asked by
Mhairi
Top achievements
Rank 1
Answers by
Pero
Telerik team
Mhairi
Top achievements
Rank 1
Share this question
or