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

Page taking more than 200ms after putting radcombo in ie9

1 Answer 15 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Joby
Top achievements
Rank 1
Joby asked on 07 Dec 2012, 09:14 AM
Hi,
Below is the code for the radcombo box. After putting this code in aspx page it will take more than 200ms for loading the page.Is there any issue with the code. This combobox is not binding at all, i am planing to bind this combobox on page load.Can you please help me?
  <telerik:RadComboBox ID="ddlDishCategory" AllowCustomText="True" Width="320px" DataTextField="Dish_Category_Description"
                                                    DropDownWidth="320px" runat="server" AutoPostBack="false" CssClass="ddlist" Height="200px"
                                                    TabIndex="1" EnableLoadOnDemand="True" EnableScreenBoundaryDetection="false"
                                                    DataValueField="Dish_Category_Id" HighlightTemplatedItems="True" EmptyMessage="--Select Dish Category--">
                                                    <HeaderTemplate>
                                                        <table border="0" width="270px" cellspacing="0" cellpadding="0" style="color: Navy;
                                                            font-weight: bold;">
                                                            <tr>
                                                                <td>
                                                                    <table border="0" width="270px" cellspacing="0" cellpadding="0">
                                                                        <tr>
                                                                            <td style="width: 70px;" align="left">
                                                                                Code
                                                                            </td>
                                                                            <td style="width: 200px; border-left: Solid 1px Gray; padding-left: 2px;" align="left">
                                                                                Dish Category Description
                                                                            </td>
                                                                        </tr>
                                                                    </table>
                                                                </td>
                                                            </tr>
                                                        </table>
                                                    </HeaderTemplate>
                                                    <ItemTemplate>
                                                        <table border="0" width="270px" cellspacing="0" cellpadding="0">
                                                            <tr>
                                                                <td>
                                                                    <table border="0" width="270px" cellspacing="0" cellpadding="0">
                                                                        <tr>
                                                                            <td style="width: 70px;" align="left">
                                                                                <%# DataBinder.Eval(Container.DataItem, "Dish_Category_Code")%>
                                                                            </td>
                                                                            <td style="width: 200px; border-left: Solid 1px Gray; padding-left: 2px;" align="left">
                                                                                <%# DataBinder.Eval(Container.DataItem, "Dish_Category_Description")%>
                                                                            </td>
                                                                        </tr>
                                                                    </table>
                                                                </td>
                                                            </tr>
                                                        </table>
                                                    </ItemTemplate
                                                </telerik:RadComboBox>

1 Answer, 1 is accepted

Sort by
0
Dimitar Terziev
Telerik team
answered on 11 Dec 2012, 05:00 PM
Hi,

Could you provide more information how the control is being populated and how many items are being loaded?

Kind regards,
Dimitar Terziev
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
ComboBox
Asked by
Joby
Top achievements
Rank 1
Answers by
Dimitar Terziev
Telerik team
Share this question
or