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

borderwidth in tooltip

1 Answer 85 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
Jiju
Top achievements
Rank 1
Jiju asked on 26 Mar 2012, 07:02 AM
Hi,
How can i set border width of tool tip?
I have set as shown in below code but not showing the width as specified.
<div style="z-index: 1;">
        <telerik:RadToolTip runat="server" ID="testTooltip" HideEvent="FromCode" Position="Center"
            Width="400px" Height="200px" Animation="None" ShowEvent="OnClick" ShowDelay="0"
            ManualClose="true" EnableViewState="true" TargetControlID="" RenderInPageRoot="true"
            RelativeTo="BrowserWindow" ShowCallout="False" Modal="true" BorderWidth="6spx"
            BorderColor="Gray" BorderStyle="Solid">
             
        </telerik:RadToolTip>
    </div>
I am using telerik version Q1 2012 (2012.1.215.35).

1 Answer, 1 is accepted

Sort by
0
Accepted
Princy
Top achievements
Rank 2
answered on 26 Mar 2012, 07:51 AM
Hi Jiju,

Try the following css to set border for RadToolTip.
ASPX:
<telerik:RadToolTip runat="server" ID="testTooltip" HideEvent="FromCode" Position="Center" Width="400px" Height="200px" Animation="None" ShowEvent="OnClick" ShowDelay="0" ManualClose="true" EnableViewState="true" TargetControlID="" RenderInPageRoot="true" RelativeTo="BrowserWindow" ShowCallout="False" Modal="true"  >
</telerik:RadToolTip>
CSS:
<style type="text/css">
 .RadToolTip
  {
   border : 6px solid Gray !important;
  }
</style>

Thanks,
Princy.
Tags
ToolTip
Asked by
Jiju
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or