I have a tool tip that loads over a control. The tool tip contains a few RadComboBox's. It appears possible to click inside the combobox and the event is transferred to the control below.
I created simple page with a tooltip that loads over a RadCalendar and was able to reproduce. Am I missing something here or is this a bug? I am using 2009.1 527 (May 27, 2009) and IE 8
It also appears to work fine in compatibility View.
I created simple page with a tooltip that loads over a RadCalendar and was able to reproduce. Am I missing something here or is this a bug? I am using 2009.1 527 (May 27, 2009) and IE 8
It also appears to work fine in compatibility View.
| <asp:Label ID="Label2" runat="server" Text="Hello World!"></asp:Label> |
| <telerik:RadToolTip ID="RadToolTip1" runat="server" Height="180px" Width="235px" TargetControlID="Label2" ManualClose ="true"> |
| <table> |
| <tr> |
| <td> |
| <telerik:RadComboBox ID="RadComboBox2" runat="server" EmptyMessage="Testing combo..."> |
| </telerik:RadComboBox> |
| </td> |
| </tr> |
| <tr> |
| <td> |
| <telerik:RadComboBox ID="RadComboBox3" runat="server" EmptyMessage="Testing combo..."> |
| </telerik:RadComboBox> |
| </td> |
| </tr> |
| <tr> |
| <td> |
| <telerik:RadComboBox ID="RadComboBox4" runat="server" EmptyMessage="Testing combo..."> |
| </telerik:RadComboBox> |
| </td> |
| </tr> |
| </table> |
| </telerik:RadToolTip> |
| <telerik:RadCalendar ID="RadCalendar2" runat="server" Font-Names="Arial, Verdana, Tahoma" |
| ForeColor="Black" Style="border-color: #ececec"> |
| </telerik:RadCalendar> |