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

[Solved] Problem with IE7

1 Answer 81 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Konstantin
Top achievements
Rank 1
Konstantin asked on 08 Sep 2009, 10:12 AM

Hi!
I have a problem in IE7 when adding new items on client. After i add the item from client, i am not able to select it in IE7 by hovering mouse over it and clicking. It is not even highlighted. It can be selected only when mouse hovers the text of the item, but not the full item. In Firefox, Opera, IE8 everything works fine. Please, give me some advice to solve the problem.
My code is very easy:

 

 

 

 

<telerik:RadComboBox ID="testCombo" runat="server">  
    </telerik:RadComboBox> 
    <button onclick="addItem();return false;">Add item</button> 
    <script type="text/javascript">  
        function addItem()  
        {  
            var combo = $find('<%= testCombo.ClientID %>');  
            var comboItem = new Telerik.Web.UI.RadComboBoxItem();  
            comboItem.set_value("Test");  
            comboItem.set_text("Test");  
            combo.get_items().add(comboItem);   
        }  
    </script> 

 

 

1 Answer, 1 is accepted

Sort by
0
Vesko
Top achievements
Rank 2
answered on 08 Sep 2009, 01:11 PM
I tested this code with the latest version but could not reproduce it. Please try with that one.
Tags
ComboBox
Asked by
Konstantin
Top achievements
Rank 1
Answers by
Vesko
Top achievements
Rank 2
Share this question
or