Declined
Last Updated: 24 Apr 2015 13:37 by ADMIN
ADMIN
Deyan Enchev
Created on: 19 Mar 2014 13:32
Category: UI for ASP.NET AJAX
Type: Bug Report
1
Single line textbox does not have to do a postback on Enter – this leads to issues when AutoComplete is used.
It was bug in the Firefox, and now works as expected. Here is markup for testing:
<script runat="server">  
    protected void RadTextBox1_TextChanged(object sender, EventArgs e)
    {
        newText.Text = RadTextBox1.Text;
    }  
</script>
<asp:Label runat="server" ID="newText"></asp:Label>
<telerik:RadTextBox runat="server" ID="RadTextBox1" AutoPostBack="true" OnTextChanged="RadTextBox1_TextChanged"></telerik:RadTextBox>
<asp:Button Text="submit" runat="server" />
0 comments