I have Q1 2009 version currently problem is that In my application I am using multicolum, load on demand and filtering functionality in rad combobox now Microsoft lunched IE 9 and combobox is not working when I clicked on comparability mode its work but my page themes will distrube I want to fix radcombo box kindly help me thanks.
<telerik:RadComboBox ID="ddlProject" runat="server" Height="190px" Skin="Outlook" DataValueField="Project_ID" AutoPostBack="true" Width="500px" AllowCustomText="True" ShowToggleImage="True" EmptyMessage="Choose Project Name" ShowMoreResultsBox="true" EnableLoadOnDemand="True" MarkFirstMatch="True" HighlightTemplatedItems="true" OnItemsRequested="ddlProject_ItemsRequested" EnableVirtualScrolling="true"> <HeaderTemplate> <table class="style1"> <tr> <td width="50%"> Customer Name </td> <td width="30%"> Project Name </td> </tr> </table> </HeaderTemplate> <ItemTemplate> <table class="style1"> <tr> <td width="50%"> <%# DataBinder.Eval(Container.DataItem, "ModelCustomer.Customer_Name")%> </td> <td width="30%"> <%# DataBinder.Eval(Container.DataItem, "Project_Name") %> </td> </tr> </table> </ItemTemplate> </telerik:RadComboBox>