On Jan 27, 9:11 pm, "Rodrigo C." <rodrigo...@gmail.com> wrote: > I have model that represents a file, and has a FileField, that I am > rendering via an Inline Formset. When a user fills in the form it gets > saved with no problems. > However, I want the users to be able to continue editing the file, but > when I re-display the newly created object, the data for the FileField > doesn't show, so if the user edits some data but doesn't re-upload the > file, she gets an error. > How can I make the formset render the FileField's current value within > the form field? > <snip>
This isn't a Django issue. It's a standard property of browsers: you can't set an initial value for file input fields. This is a security measure, to stop malicious pages uploading files from your hard drive without your explicit instruction. There isn't really any way round it, except to do something extremely complicated like GMail does and upload the file in the background while the user fills in the form, then replace the file field with a reference to the uploaded version of the file. -- DR. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---