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

TipManager With ComboBox Bug

2 Answers 135 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
Thomas Kristensen
Top achievements
Rank 1
Thomas Kristensen asked on 26 Apr 2007, 06:49 AM
Hi

I downloaded and tried the new Tooltip. I placed a RadTooltipManager on my page but I am getting a script error when using it with the RadCombobox (2.7.0), however it works fine with the RadToolTip. I would like to use the RadTooltipManager with the ComboBox, so if you could find a fix it would be great.

Here is how the code that does not work looks like. The problem is when you try to open the ComboBox.

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

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

<telerik:RadToolTipManager ID="RadToolTipManager1" runat="server"></telerik:RadToolTipManager>

<radC:RadComboBox ID="RadComboBox1" ToolTip="ToolTip Test" runat="server" SkinsPath="~/RadControls/ComboBox/Skins" Width="150px">

<Items>

<radC:RadComboBoxItem Text="1" Value="1" />

<radC:RadComboBoxItem Text="2" Value="2" />

<radC:RadComboBoxItem Text="3" Value="3" />

<radC:RadComboBoxItem Text="4" Value="4" />

<radC:RadComboBoxItem Text="5" Value="5" />

<radC:RadComboBoxItem Text="6" Value="6" />

<radC:RadComboBoxItem Text="7" Value="7" />

</Items>

</radC:RadComboBox>

</div>

</form>

2 Answers, 1 is accepted

Sort by
0
Petya
Telerik team
answered on 26 Apr 2007, 10:23 AM
Hi Thomas Kristensen,

We investigated the problem and it turned out that it is an issue with RadComboBox. We will further work on it and perhaps it will be fixed with the next versions of RadComboBox. As for now, if it suits your scenario you can try setting targetcontrols to the RadToolTipManager:

        <telerik:RadToolTipManager ID="RadToolTipManager1" text="MyTooltip" runat="server"
            <targetcontrols> 
                <telerik:tooltiptargetcontrol targetcontrolid="RadComboBox1" /> 
            </targetcontrols> 
        </telerik:RadToolTipManager> 

where the ToolTip property of RadComboBox is removed.

Regards,
Petya
the telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Petya
Telerik team
answered on 26 Apr 2007, 11:04 AM
Hi Thomas Kristensen,

I am happy to tell you that the problem was fixed right away and I tested your code and it works now. Please, open a support ticket and we will send you the hot-fix of RadComboBox.

Regards,
Petya
the telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
ToolTip
Asked by
Thomas Kristensen
Top achievements
Rank 1
Answers by
Petya
Telerik team
Share this question
or