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

RadComboBox IE6 issue

1 Answer 73 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Bulent COSKUN
Top achievements
Rank 1
Bulent COSKUN asked on 30 Jul 2008, 09:02 PM
Hi,
My web page loading a lot of stuff from database so loading process little bit longer. If I click Combobox down arrow while loading page, List appearing on page some other palaces instead of proper location.  Just FF is showing correct. Safari, IE7 and Opera have same issue.

please advice?
Bug Explaination Picture 

1 Answer, 1 is accepted

Sort by
0
Rosi
Telerik team
answered on 01 Aug 2008, 06:31 AM
Hi Paul ,

I suggest forbid opening the dropdown while the page is not completely loaded. You can do this if you set the Enabled property of RadComboBox to false and enable the control on pageLoad event of the page by the following way:
<script>  
function pageLoad ()  
{  
 
    var combo = $find('<%=RadComboBox1.ClientID%>");  
    combo.enable();  
}  
</script> 

Regards,

All the best,
Rosi
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
ComboBox
Asked by
Bulent COSKUN
Top achievements
Rank 1
Answers by
Rosi
Telerik team
Share this question
or