Hi!
I've noticed that when I have an ajaxified ASP.Net TextBox next to some characters, the Textbox will insert a space before the adjacent characters. Right after the first ajaxified postback, the space disappears. This makes my UI to move a space to the side when the user provokes the first partial postback.
Code example here:
| <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" UpdatePanelsRenderMode="Inline"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="Button1"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="txtRecord" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManager> |
| <asp:Button ID="Button1" runat="server" Text="Button" /> |
| <asp:TextBox ID="txtRecord" runat="server" Width="22px" Text="0" />| |
| <%-- !!! Atention to the vertical bar right after the textbox! !!!--%> |
How can I make the space introduced by the rendered div panel of the ajaxification disappear?
Regards,
Rodrigo S.