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

Rad Tooltip Design

3 Answers 153 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
sahil
Top achievements
Rank 1
sahil asked on 20 Mar 2009, 04:13 AM
I have  a radtooltip with no skin.

i want to change the border color of radtooltip .

and

i want to change the close arrow position of rad tooltip.

how to do that any suggestion.

plz help.

3 Answers, 1 is accepted

Sort by
0
Accepted
Princy
Top achievements
Rank 2
answered on 20 Mar 2009, 08:08 AM
Hello Sahil,

You can setting the border color of RadToolTip in the css class as shown below:
css:
 <style type="text/css"
  div.radtooltip_Default 
  {    
    border-color:BlueViolet !important;   
  }   
 </style> 

Thanks
Princy.
0
sahil
Top achievements
Rank 1
answered on 20 Mar 2009, 12:14 PM
Thanks for help , it is working....radtoop tip border changes color.

can You please tell me , there is a close arrow on the top of radtoop tip , i want  a new close image  in bottom. and when i click on this image , it closes, what is the code on Image click .???
and
i  want to disappear default close arrow from the top? 
0
Tervel
Telerik team
answered on 23 Mar 2009, 12:34 PM
Hi sahil,

1. To close the currently open tooltip with code ou can use:

var tooltip = Telerik.Web.UI.RadToolTip.getCurrent();
if (tooltip) tooltip.close();


2. One of the ways to remove the [x] close button from the tooltip is to set the (now obsolete ManualClose = "false") or (the correct way) HideEvent property to some other value than you have it set, e.g. HideEvent = "FromCode".


Best regards,
Tervel
the Telerik team

Check out Telerik Trainer , the state of the art learning tool for Telerik products.
Tags
ToolTip
Asked by
sahil
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
sahil
Top achievements
Rank 1
Tervel
Telerik team
Share this question
or