Keyboard "type ahead" in CRUD web apps?
Posted
by
user61852
on Programmers
See other posts from Programmers
or by user61852
Published on 2013-07-02T15:56:41Z
Indexed on
2013/07/02
17:14 UTC
Read the original article
Hit count: 385
In some data entry contexts, I've seen data typists, type really fast and know so well the app they use, and have a mechanic quality in their work so that they can "type ahead", ie continue typing and "tab-bing" and "enter-ing" faster than the display updates, so that in many occasions they are typing in the data for the next form before it draws itself. Then when this next entry form appears, their keystrokes fill the text boxes and they continue typing, selecting etc.
In contexts like this, this speed is desirable, since this persons are really productive.
I think this "type ahead of time" is only possible in desktop apps, but I may be wrong.
My question is whether this way of handling the keyboard buffer (which in desktop apps require no extra programming) is achievable in web apps, or is this impossible because of the way web apps work, handle sessions, etc (network latency and the overhead of generating new web pages ) ?
© Programmers or respective owner