Hi, This isn't a builtin feature. It might be possible to add as an extension in your own code, but I can't point you at a simple set of instructions for how to do this.
If you've got a problem with the number of fields in your TabularInline causing horizontal scrolling, perhaps you might think about using StackedInline instead: https://docs.djangoproject.com/en/dev/ref/contrib/admin/#django.contrib.admin.StackedInline StackedInline orders the fields vertically, so you won't have the horizontal scrolling problem. Yours, Russ Magee %-) On Sun, Jul 6, 2014 at 2:09 PM, Aeh. ABID <[email protected]> wrote: > In the inline models when using TabularInline, is it possible to use a > popup to add/edit an item when we have a number of fields that can't hold > in the page without horizontal scrolling ? > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/django-users. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/220a1581-3658-423b-9734-2e563333cff6%40googlegroups.com > <https://groups.google.com/d/msgid/django-users/220a1581-3658-423b-9734-2e563333cff6%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAJxq8483RBWJx5__CxvVJiw8AjLEO%3DU3LTQvY1VS3aK3CqOjGQ%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.

