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

ToolTip position issue.

1 Answer 85 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
Raju
Top achievements
Rank 1
Raju asked on 17 Aug 2009, 12:54 PM

<%

@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm2.aspx.cs" Inherits="tootiptest.WebForm2" %>

 

 

<%

@ Register Assembly="Telerik.Web.UI, Version=2009.2.701.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4"

 

 

 

Namespace="Telerik.Web.UI" TagPrefix="telerik" %>

 

 

 <%

@ Register Assembly="Infragistics35.WebUI.WebCombo.v9.1, Version=9.1.20091.2067, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" Namespace="Infragistics.WebUI.WebCombo" TagPrefix="igcmbo" %>

 

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

 

 <

 

html xmlns="http://www.w3.org/1999/xhtml">

 

 <

 

head runat="server">

 

 

<title></title>

 

 </

 

head>

 

<

 

body>

 

 

<form id="form1" runat="server">

 

 

<asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager>

 

 

<div>

 

 

<table>
<tr>

 

 

</tr>

 

 

<tr>

 

<td width="110px">

 

</td>

 

 

<td>

 

 

<igcmbo:WebCombo ID="WebCombo1" runat="server">

 

 

<ClientSideEvents AfterDropDown="test" />

 

 

</igcmbo:WebCombo>

 

 

</td>

 

 

</tr>

 

 

</table>

 

 

<telerik:RadToolTip ID="RadToolTip1" Text="test" TargetControlID="WebCombo1" Position="BottomRight"

 

 

RelativeTo="Element" ShowEvent="FromCode" runat="server">

 

</telerik:RadToolTip>

 

</div>

 

 

</form>

 

 </b

 

ody>

 

 </

 

html>

 

 <

 

script language="javascript" type="text/javascript">

 

 

 

 

function test() {

 

var rttToolTip = $find("<%= RadToolTip1.ClientID %>");

 

 rttToolTip.show();

}

 

</

 

script>

 

 

 

1 Answer, 1 is accepted

Sort by
0
Svetlina Anati
Telerik team
answered on 20 Aug 2009, 08:29 AM
Hello Raju,

As far as I can see from your code, you are using the combo box of Infragistics. Please, note, that we do not support other third party controls - it is OK to use both Telerik and Infragistics controls in the very same project but  we do not offer solution for integration attempts between such controls. What I can recommend is either to consider using RadComboBox in integration with RadToolTip or not to use the tooltip but another popup control or implement it by yourself.


Sincerely yours,
Svetlina
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
ToolTip
Asked by
Raju
Top achievements
Rank 1
Answers by
Svetlina Anati
Telerik team
Share this question
or