Skip to main content
Tweeted twitter.com/#!/StackUX/status/161862894475157504
added 4 characters in body
Source Link
Rahul
  • 23.9k
  • 10
  • 80
  • 169

I am working on a registration form for a web application which requires you to enter your first name, last name, date of birth, address and so forth. If the user fills out all of the fields we are talking about approximately forty fields.

Of course this is a cumbersome procedure for the end user, but it is necessary. It is also important to aid the user in keeping the data up to date, changing address and such. We are currently working on ways of making this process easier for the user. One way could be to select the entered text when the user focuses the text field using the mouse. In a way mimicking the behavior of using the tab-key when stepping through an ordinary form in the browser.

I realize that this is not the conventional thing to do. And many of our users are not that used to computers, so much so that they probably does not know about Ctrl+A.

Given the situation, is it a good idea to select all contents of the input field for easier editing or will it actually cause more trouble than it solves.is it a good idea to select all contents of the input field for easier editing or will it actually cause more trouble than it solves?

I am working on a registration form for a web application which requires you to enter your first name, last name, date of birth, address and so forth. If the user fills out all of the fields we are talking about approximately forty fields.

Of course this is a cumbersome procedure for the end user, but it is necessary. It is also important to aid the user in keeping the data up to date, changing address and such. We are currently working on ways of making this process easier for the user. One way could be to select the entered text when the user focuses the text field using the mouse. In a way mimicking the behavior of using the tab-key when stepping through an ordinary form in the browser.

I realize that this is not the conventional thing to do. And many of our users are not that used to computers, so much so that they probably does not know about Ctrl+A.

Given the situation, is it a good idea to select all contents of the input field for easier editing or will it actually cause more trouble than it solves.

I am working on a registration form for a web application which requires you to enter your first name, last name, date of birth, address and so forth. If the user fills out all of the fields we are talking about approximately forty fields.

Of course this is a cumbersome procedure for the end user, but it is necessary. It is also important to aid the user in keeping the data up to date, changing address and such. We are currently working on ways of making this process easier for the user. One way could be to select the entered text when the user focuses the text field using the mouse. In a way mimicking the behavior of using the tab-key when stepping through an ordinary form in the browser.

I realize that this is not the conventional thing to do. And many of our users are not that used to computers, so much so that they probably does not know about Ctrl+A.

Given the situation, is it a good idea to select all contents of the input field for easier editing or will it actually cause more trouble than it solves?

Source Link
dotmartin
  • 643
  • 1
  • 4
  • 13

Selecting all contents of an input field of text type when focusing

I am working on a registration form for a web application which requires you to enter your first name, last name, date of birth, address and so forth. If the user fills out all of the fields we are talking about approximately forty fields.

Of course this is a cumbersome procedure for the end user, but it is necessary. It is also important to aid the user in keeping the data up to date, changing address and such. We are currently working on ways of making this process easier for the user. One way could be to select the entered text when the user focuses the text field using the mouse. In a way mimicking the behavior of using the tab-key when stepping through an ordinary form in the browser.

I realize that this is not the conventional thing to do. And many of our users are not that used to computers, so much so that they probably does not know about Ctrl+A.

Given the situation, is it a good idea to select all contents of the input field for easier editing or will it actually cause more trouble than it solves.