Auto tab between fields in Django admin site
I have a built-in model with fixed length data that needs to be entered very quickly, so I was thinking about a way to "tab" through the fields automatically when filling in the field ...
Is it possible?
0
Andor
a source
to share
2 answers
I can recommend the following links:
- JQuery AutoTab
+1
gernberg
a source
to share
It is possible of course, but it will require some javascript. You want to bind an event to a keypress event in each field, and when it fires, check the length of the text you entered so far - if it matches, move focus to the next field.
+1
Daniel roseman
a source
to share