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
python django django-admin field


a source to share


2 answers


I can recommend the following links:



  • JQuery AutoTab
+1


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


a source to share







All Articles