Hi,
We have a strange behaviour in our login page when users tries to login from Windows Phone. On server callback/postback the last RadTextBox that was used by the user has an empy text property!!!
We are now using telerik Q1 2013, byt the behaviour is way older than that. The problem can easily be reproduced by using two RadTextBox and one RadButton. Try to use the following code from a Windows Phone 7.5 and fill upp the textboxes and then press the button.
Best regards
Robert
We have a strange behaviour in our login page when users tries to login from Windows Phone. On server callback/postback the last RadTextBox that was used by the user has an empy text property!!!
We are now using telerik Q1 2013, byt the behaviour is way older than that. The problem can easily be reproduced by using two RadTextBox and one RadButton. Try to use the following code from a Windows Phone 7.5 and fill upp the textboxes and then press the button.
Best regards
Robert
<%@ Page Language="C#" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><script runat="server"> protected void RadButton1_Click(object sender, EventArgs e) { Label1.Text = RadTextBox1.Text; Label2.Text = RadTextBox2.Text; }</script><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title></title></head><body> <form id="form1" runat="server"> <asp:ScriptManager ID="ScriptManager1" runat="server" /> <div> <table> <tr> <td> <telerik:RadTextBox ID="RadTextBox1" runat="server" /> </td> <td> <telerik:RadTextBox ID="RadTextBox2" runat="server" /> </td> </tr> <tr> <td colspan="2"> <telerik:RadButton ID="RadButton1" runat="server" Text="RadButton" OnClick="RadButton1_Click" /> </td> </tr> <tr> <td> <asp:Label ID="Label1" runat="server" Text="Label" /> </td> <td> <asp:Label ID="Label2" runat="server" Text="Label" /> </td> </tr> </table> </div> </form></body></html>