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

RadToolTip is not working on MOSS.

3 Answers 105 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
Raju
Top achievements
Rank 1
Raju asked on 23 Jul 2008, 04:48 PM
hi,

<
telerik:RadTextBox ID="RadTextBox1_Text" runat="server" Text="Test">
</telerik:RadTextBox>

<telerik:RadToolTip ID="RadToolTip2" runat="server" Skin="Telerik" Position="BottomCenter" Width="100px" Height="100px" TargetControlID="RadTextBox1_Text" IsClientID="true"
Animation="Slide" Text="Textbox"></telerik:RadToolTip>


This is the code i am using..its working fine in asp.net ,but in MOSS its not working..
Even for RadNumericTextBox,RadDateInput also.

3 Answers, 1 is accepted

Sort by
0
Svetlina Anati
Telerik team
answered on 24 Jul 2008, 01:47 PM
Hello Raju,

In this specific case - when using RadInput control, you will need to use the ClientID of the control which is formed by its ID plus "_text" - this is how the control is rendered on the client. This means that in case your RadTextBox is called RadTextBox_Text, the RadToolTip's TargetControlID should be RadTextBox_Text_text. This applies in all environments, no matter you are using MOSS or not. This being said, you should modify your code in the following manner:

 <telerik:RadTextBox ID="RadTextBox1_Text" runat="server" Text="Test">  
        </telerik:RadTextBox> 
        <telerik:RadToolTip ID="RadToolTip2" runat="server" Skin="Telerik" Position="BottomCenter" 
            Width="100px" Height="100px" TargetControlID="RadTextBox1_Text_text" IsClientID="true" 
            Animation="Slide" Text="Textbox">  
        </telerik:RadToolTip> 
 

You can find a more detailed explanation of this approach here.


Best wishes,
Svetlina
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Raju
Top achievements
Rank 1
answered on 25 Jul 2008, 06:59 AM
hi,

I tried with the same code what u sent,but still in MOSS its not working.
0
Svetlina Anati
Telerik team
answered on 28 Jul 2008, 03:03 PM
Hello Raju,

I tested again the code I sent you in my previous post in MOSS and it worked as expected. I suppose that maybe it could not work in case you have additional settings which you have not explained - e.g. a MasterPage, which is an INaming Container and changes the controls IDs.

Would you please try to replicate the problem and the behavior within a standard ASP.NET web site? There should not be logical differences between it and a MOSS implementation. In case you succeed, please open a new support ticket, send me your project and I will modify it for you in order to meet your needs.

Kind regards,
Svetlina
the Telerik team

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