| Author |
Disable Copy/Paste in a Textbox
|
Nilesh Pat
Ranch Hand
Joined: Mar 01, 2010
Posts: 30
|
|
i want to Disable Copy/Paste in a Textbox in GWT.
as i am using password field and confirm password filed. User should not able to copy string from password filed to confirm password filed.
i am using PasswordTextBox for password filed.
i also want to do same for user id n confirm user id which are normal text boxes.
|
Regards,
Nil
|
 |
Nilesh Pat
Ranch Hand
Joined: Mar 01, 2010
Posts: 30
|
|
hey... password text box itself provides functionality to block copy from it.
but you can paste in it... so that's ok.
but the problem exists for normal text box. at least i should able to block paste in confirm text box.
|
 |
Nilesh Pat
Ranch Hand
Joined: Mar 01, 2010
Posts: 30
|
|
hey i got the solution.
first write
sinkEvents( Event.ONPASTE );
in the constructor.
then write
|
 |
Maneesh Godbole
Saloon Keeper
Joined: Jul 26, 2007
Posts: 8566
|
|
Well done
Thank you for sharing your solution.
PS. I edited your previous post to incorporate code tags. In future, while posting code, please UseCodeTags As you can see, code tags makes the post easier to read and easier to understand.
|
[Donate a pint, save a life!] [How to ask questions] [Onff-turn it on!]
|
 |
Nilesh Pat
Ranch Hand
Joined: Mar 01, 2010
Posts: 30
|
|
hey maneesh thank you..
actually i was also searching for that UseCodeTags but could't find it. so just posed it..
but thank you for your editing.
|
 |
 |
|
|
subject: Disable Copy/Paste in a Textbox
|
|
|