Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
20
WebTextEditor cursor position
posted

I have WebTextEditor placed in aspx page with certain width say width="100px".

My problem is ,when I am typing the characters in the WebTextEditor, I can see the cursor moving till I reach the end of the WebTextEditor. Once it reaches the end, I cannot see the text being entered as cursor is not appeared to be moving. But when I hit the end button on keyboard , its showing me the text.

I believe this is the basic behaviour of any text box. What is the fix for this.

 <ig:WebTextEditor ID="WebTextEditor1" Width="100px" runat="server">

        </ig:WebTextEditor>

 

 

Parents
No Data
Reply
  • 49378
    posted

    Hi santoshb4u,

    It has been some time since your post, however in case you still need assistance I would be glad to help.

    You are correct that the behavior you are experiencing is native to any textbox. In this scenario it may be worth exploring the SelectionOnFocus property of the control in order to govern the position of the caret upon focusing. Otherwise you can explore the TextChanged client-side event in order to set the input's behavior as per your requirement.

    Please do not hesitate to contact me if you have any questions.

    Best Regards,

    Petar Ivanov
    Developer Support Engineer
    Infragistics, Inc.
    http://es.infragistics.com/support

Children