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

Tooltip problem

3 Answers 77 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
sadeghhp
Top achievements
Rank 1
sadeghhp asked on 23 May 2009, 10:30 AM
hi
i have 2 bold problem with radtooltip
the first is when i use a Radcombobox in tooltip , scrolled item show in back off tooltip !!
the second is when i have a long text in a lable that in a tool tip , it cannot scroll down too read all the text !

3 Answers, 1 is accepted

Sort by
0
Accepted
Svetlina Anati
Telerik team
answered on 26 May 2009, 09:10 AM
Hi Sadeghhp,

In ordre to show the dropdown of the combo box on top of the tooltip you should set a bigger z-index to the RadComboBox as shown below:

<telerik:RadComboBox ID="RadComboBoxProduct" runat="server" style="z-index: 9000;" Height="200px" Width="200px" .......................  
                             

As to the overflow, you should set the Width and Height of the tooltip and also ContentScrolling=Auto - this should fix the problem.

Best wishes,
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.
0
sadeghhp
Top achievements
Rank 1
answered on 03 Jul 2009, 07:08 AM
i have same problem with Radtooltip and RadDatePicker in it !
the popup is show in back of tooltip !
0
Svetlina Anati
Telerik team
answered on 06 Jul 2009, 12:10 PM

Hi sadeghhp,

The described behavior is again due to the RadToolTip's z-index being bigger than the one of the popup calendar of the RadDatePicker as you found yourself. In order to get the desired result, I suggest to set style="z-index: 4999" to the RadToolTip.

I also assume that you would like the calendar popup to hide when the tooltip hides - in order to achieve this dcelare the following javascript fundtion:

 function BeforeHide()  
            {  
              var datePicker = $find("<%=RadDatePicker1.ClientID %>");  
              datePicker.hidePopup();    
            } 

and set it as a handler to the tooltip's OnClientBeforeHide event.


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
sadeghhp
Top achievements
Rank 1
Answers by
Svetlina Anati
Telerik team
sadeghhp
Top achievements
Rank 1
Share this question
or