Hi,
I have a RADComboBox on a page, when click it I get the drop down as expected, however if I then click within the RADEditor on the page the drop down region does not collapse. Its as though it is not aware that it has lost focus?
You can reproduce the problem with the code below:
Any ideas?
Thanks,
Jeff
I have a RADComboBox on a page, when click it I get the drop down as expected, however if I then click within the RADEditor on the page the drop down region does not collapse. Its as though it is not aware that it has lost focus?
You can reproduce the problem with the code below:
<html xmlns="http://www.w3.org/1999/xhtml" > |
<head runat="server"> |
<title></title> |
</head> |
<body> |
<form id="form1" runat="server"> |
<div> |
<asp:ScriptManager runat="server" ID="ScriptManager1"> |
</asp:ScriptManager> |
<telerik:RadComboBox ID="RadComboBox1" runat="server"> |
<Items> |
<telerik:RadComboBoxItem runat="server" Value="test1" Text="test1" /> |
<telerik:RadComboBoxItem runat="server" Value="test2" Text="test2" /> |
</Items> |
</telerik:RadComboBox> |
<telerik:RadEditor ID="RadEditor1" runat="server"> |
</telerik:RadEditor> |
</div> |
</form> |
</body> |
</html> |
Any ideas?
Thanks,
Jeff