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

RadComboBox.Text doesn't get the input text in IE9. It works on all other browsers

6 Answers 76 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Christy
Top achievements
Rank 1
Christy asked on 16 Nov 2011, 11:00 PM

RadComboBox.Text doesn't get the input text in IE9. It works on all other browsers. The properties are set as follows;


<telerik:RadComboBox ID="RecipientCategory" runat="server" AllowCustomText="True" Filter="Contains" MarkFirstMatch="True" Width="300px"></telerik:RadComboBox>

 

 

6 Answers, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 17 Nov 2011, 06:18 AM
Hello,

I have tried the same and it worked as expected. I am using version 2011, 2, 915, 35. Here is the sample code.
ASPX:
<telerik:RadComboBox ID="RecipientCategory" runat="server"
           DataSourceID="SqlDataSource1"  DataTextField="FirstName"
           DataValueField="FirstName"   AllowCustomText="True" Filter="Contains"
           MarkFirstMatch="True" Width="300px"
           ontextchanged="RecipientCategory_TextChanged" AutoPostBack="true">
</
telerik:RadComboBox>

C#:
protected void RecipientCategory_TextChanged(object sender, EventArgs e)
 {
     Label l1 = new Label();
     l1.Text = RecipientCategory.Text;
     form1.Controls.Add(l1);
 }

Thanks,
Princy.
0
Kalina
Telerik team
answered on 17 Nov 2011, 09:34 AM
Hello Christy,

Recently we have encountered an issue with one of the Internet Explorer updates that disturbs certain RadComboBox functionalities when MarkFirstMatch and AllowCustomText are set to true.
Could you please take a look at this online article - maybe the issue that you mention is the same as the one described there?
If this is not your case - could you please explain your implementation in more details and paste here some working code?

Regards,
Kalina
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
0
Nomi
Top achievements
Rank 1
answered on 16 May 2013, 10:22 AM
I want that text should be input in uppercase in rad combobox control in asp.net c#. Using AllowCustomText=true allow me to enter text into rad combobox control but i want that the text should entered in upper case. What i need to do?
0
Hristo Valyavicharski
Telerik team
answered on 21 May 2013, 09:58 AM
Hi Nouman,

You could handle OnClientTextChange event and change the entered text:

Javascript:
function OnClientTextChange(sender, args) {
            var upperText = sender.get_text().toUpperCase()
            sender.set_text(upperText);
        }

Markup:
<telerik:RadComboBox ID="RadComboBox1" runat="server" AllowCustomText="true" OnClientTextChange="OnClientTextChange"></telerik:RadComboBox>


Regards,
Hristo Valyavicharski
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.
0
SIVAKUMARAN
Top achievements
Rank 1
answered on 15 Nov 2013, 04:07 PM
Hi there

I am using Telerik Web UI version 2009.3.1503.20

The RadComboBox fails to retain the input text in IE9 when moved focus to other controls in the page, however it works fine in IE7, IE8, firefox and chrome.
I have already tried the options mentioned in the following article with no luck. Please help!

http://www.telerik.com/community/forums/aspnet-ajax/combobox/patch-ms-update-kb2586448-breaks-radcombobox-markfirstmatch-in-versions-older-than-2009-3-1314-inclusive.aspx

Thanks
Siva
0
Hristo Valyavicharski
Telerik team
answered on 20 Nov 2013, 01:03 PM
Hi Siva,

Do you experienced the same issue? It affects IE6,7,8,9. Can you clarify what is the result if you apply the suggested patch? Does it help? Paste your code here, so we can review it and inspect it thoroughly.

Note that also that the version  2009.3.1503.20 is no longer supported. I would suggest that you to upgrade your project to newer version in order to get fix for it.  

Thanks.

Regards,
Hristo Valyavicharski
Telerik
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 the blog feed now.
Tags
ComboBox
Asked by
Christy
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Kalina
Telerik team
Nomi
Top achievements
Rank 1
Hristo Valyavicharski
Telerik team
SIVAKUMARAN
Top achievements
Rank 1
Share this question
or