in GWT, Is it possible to set the cursor position to a location (x,y) (top,left) ??
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Are you referring to the mouse cursor? If so, browsers don’t provide an API for setting the position of the mouse cursor.
If you’re talking about a text insertion caret in a
TextAreaor similar widget, you can useTextBoxBase.setCursorPos()to set the caret to a particular offset within the text.