Won't Fix
Last Updated: 20 Jun 2022 14:38 by ADMIN
ADMIN
Marin Bratanov
Created on: 19 Jan 2015 11:32
Category: ToolTip
Type: Bug Report
0
FIX Loading sign is not visible when height or explicit scrolling is set in a RadToolTipManager with RenderMode=Lightweight
The issue stems from the content div element that has explicit background color. The loading sign is a background-image on the main tooltip wrapper, so having explicit height and/or scrolling causes the later element to hide the root element, thus, hiding the loading sign as well.

You can work around this by removing the explicit color declaration for all skins:

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