Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issues with text input UI #27

Open
allthesignals opened this issue Feb 12, 2020 · 0 comments
Open

Issues with text input UI #27

allthesignals opened this issue Feb 12, 2020 · 0 comments

Comments

@allthesignals
Copy link
Collaborator

@chriswhong commented on Wed Jan 31 2018

From internal testing using the docs site here in ITD:

I think it's safe to assume most of these were on IE11/Windows 7.

The first one can be addressed with debouncing, we should not send the API call until sufficient time has passed since the last keystroke.

There is a lag in the window accepting input. The issue is that during the lag, keystrokes are not being captured. A user will correct their input several times before they catch on that they need to type slowly.

After some input is entered, a user may need to make a correction or reach a new location by just changing a digit. For example, after entering 120 Broadway, a user may change the 20 in 120 to 55 in order to get to 155 Broadway. Instead of inserting the correction and pushing over the rest of the string, you end up overwriting the part of string that you want to remain. This happens intermittently.

After some input is entered , when deleting characters within the string, the curser will jump to the end of the string. If you are not careful, you inadvertently delete from the end of the string. This happens intermittently.

If you try to overwrite something, the curser will jump to the end of the string. This happens intermittently.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant