For exmaple if I type:
hello world(X) where (X) is where the cursor is, and then I click away and click back to the same textbox after 1/2 seconds it looks like:
(X)hello world
I'm using form decorator on the page with webblue. Here is a snippet:
<telerik:RadScriptManager ID="RadScriptManager1" Runat="server">
</telerik:RadScriptManager>
<telerik:RadFormDecorator ID="RadFormDecorator1" Runat="server" Skin="WebBlue" DecoratedControls="All" />
<fieldset style="padding:10px"><legend></legend>
<table><tr><td>Company</td><td>
<telerik:RadTextBox runat="server" ID="txtCompanyName"></telerik:RadTextBox>
<asp:TextBox runat="server" ID="Test"></asp:TextBox>
</td><td>Contact</td><td><telerik:RadTextBox runat="server" ID="txtContact"></telerik:RadTextBox></td></tr>
<tr><td>Created From</td><td><telerik:RadDatePicker runat="server" ID="dtsStart"></telerik:RadDatePicker></td><td>Created To</td><td><telerik:RadDatePicker runat="server" ID="dtsEnd"></telerik:RadDatePicker></td></tr>
<tr><td>Status</td><td><telerik:RadComboBox SelectionMode="Single" ID="lstStatus"
runat="server" Skin="WebBlue"></telerik:RadComboBox></td></td><td colspan="2"><asp:Button ID="cmdSearch" runat="server" text="Search"/></td>
</table>
</fieldset>
As you can see I don't have CaretToBeginning for the SelectionOnFocus option.
Any idea whats going on?