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

Radcombobox Autocomplete special characters are not working properly

1 Answer 168 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
pradip
Top achievements
Rank 1
pradip asked on 09 Jan 2014, 01:31 PM
Hi

We are using RadCombobox autocomplete feature. When user is typing below text which having special characters then server side we are seeing different text
@ Pole                -- server side -- %40 Pole
ran & marry         -- server side  -- ran %20 marry
s/s/                      -- server side  -- s%2Fs%2F
Sun Rao              -- server side   -- Sun%20Rao

This is not happening consistently, but in debug mode we can see different values. It would great help if there a way to fix this.

Thanks,
Pradip

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 10 Jan 2014, 05:57 AM
Hi pradip,

Unfortunately I couldn't replicate the issue at my end. Please have a look into the sample code snippet which works fine at my end.

ASPX:
<telerik:RadComboBox ID="RadComboBox1" runat="server" DataSourceID="SqlDataSource1"
    DataTextField="Text" Filter="StartsWith" AllowCustomText="true">
</telerik:RadComboBox>
<telerik:RadButton ID="RadButton1" runat="server" Text="GetData" OnClick="RadButton1_Click">
</telerik:RadButton>

C#:
protected void RadButton1_Click(object sender, EventArgs e)
{
    string text = RadComboBox1.Text;
}

Please provide you code if it doesn't help.
Thanks,
Shinu.
Tags
ComboBox
Asked by
pradip
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or