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

Loading Image not showing

2 Answers 92 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
Dan
Top achievements
Rank 1
Dan asked on 19 Jan 2015, 04:10 AM
I have a RadToolTipManager setup like this:

<telerik:RadToolTipManager
    runat="server"
    ID="ttChart"
    Position="BottomCenter"
    OffsetY="-10"
    RenderMode="Lightweight"
    EnableRoundedCorners="False"
    RelativeTo="Element"
    Width="435"
    Height="350"
    HideEvent="ManualClose"
    HideDelay="800" 
    ContentScrolling="Y"
    Skin="Default"="3450
    ShowDelay="0" 
    Modal="True"
    ShowEvent="OnClick"
    Animation="resize"
    OnAjaxUpdate="updateChart"
    RenderInPageRoot="true">
</telerik:RadToolTipManager>

In my RadGrid I insert Cells with dymanic tooltip references - using OnAjaxLoad to load an ASCX.  Works great.

Problem is that the Loading image does not show - unless I remove ContentScrolling="Y", or Height="350".  Either of those seem to make the loading image come back when removed.  

Trouble is I would like to use both of these features.  Is this a bug?  (Using 2014.3.1209.45)



2 Answers, 1 is accepted

Sort by
0
Accepted
Marin Bratanov
Telerik team
answered on 19 Jan 2015, 11:36 AM

Hi Dan,

Indeed, this is a bug in the Lightweight RenderMode of the tooltip manager and I am logging it for fixing: FIX Loading sign is not visible when height or explicit scrolling is set in a RadToolTipManager with RenderMode=Lightweight. I hope the workaround I have provided will be suitable for you:

div.RadToolTip div.rtContent
{
    background-color: transparent;
}

I have also updated your Telerik points for your report.

Of course, you can, alternatively, fall back to the Classic RenderMode.

Regards,

Marin Bratanov
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
0
Dan
Top achievements
Rank 1
answered on 21 Jan 2015, 03:55 PM
Thanks - that did it for me for now.
Tags
ToolTip
Asked by
Dan
Top achievements
Rank 1
Answers by
Marin Bratanov
Telerik team
Dan
Top achievements
Rank 1
Share this question
or