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

Doesn't Support Chinese big5

1 Answer 40 Views
AutoCompleteBox
This is a migrated thread and some comments may be shown as answers.
Jimmy
Top achievements
Rank 1
Jimmy asked on 19 Jan 2013, 07:42 PM
hey, it seems doesn't support Chinese, I tried seaching both English and Chinese Name from MSSQL 2008 DB. Only English name could be listed in dropdownlist. Is that possible to fix it? thanks

<code>
                    <telerik:RadAutoCompleteBox runat="server" ID="RadAutoCompleteBox1" Width="155" DataSourceID="SqlDataSource1"
                      AllowCustomEntry="false" DataTextField="txtName" datatextvalue="txtMobileOne"  DropDownHeight="100" DropDownWidth="275">
                        <DropDownItemTemplate>
                            <table cellpadding="0" cellspacing="0">
                                <tr>
                                    <td align="left" style="width: 25%; padding-left: 10px;">
                                         <%# DataBinder.Eval(Container.DataItem, "txtName")%>
                                      
                                    </td>
                                    <td align="left" style="width: 25%; padding-left: 10px;">
                                        <%# DataBinder.Eval(Container.DataItem, "txtMobileOne")%>

                                    </td>
                                  <td align="left" style="width: 25%; padding-left: 10px;">
                                        <%# DataBinder.Eval(Container.DataItem, "txtMobileTwo")%>

                                    </td>
                                </tr>
                            </table>
                        </DropDownItemTemplate>
                    </telerik:RadAutoCompleteBox>


            <asp:SqlDataSource ID="SqlDataSource1" runat="server"  ConnectionString="<%$ ConnectionStrings:sqlConn %>"
        ProviderName="System.Data.SqlClient" SelectCommand="SELECT [txtMobileOne],  [txtMobileTwo], [txtName] FROM UserProfile">
    </asp:SqlDataSource>

</code>

1 Answer, 1 is accepted

Sort by
0
Nencho
Telerik team
answered on 24 Jan 2013, 08:13 AM
Hello Jimmy,

I can suggest you to open a support ticket, in order to provide us the data you use to populate the RadAutoCompleteBox, so we could perform some tests locally and provide you the proper solution.

Regards,
Nencho
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
AutoCompleteBox
Asked by
Jimmy
Top achievements
Rank 1
Answers by
Nencho
Telerik team
Share this question
or