Currently I am using something like:
initialValues={
'textField1':'value for text field 1',
'textField2':'value for text field 2',
'imageField': someModel.objects.get(id=someId).logo
}
form = myForm(initial=initialValues)
When I call myForm as above, the initial values are displayed as expected: the textField1, textField2 and imageField (with the options Currently: linkToImage, Clear check box and Change: )
But when I save the form, there is nothing saved in the imageField field (checking the database and I see the imageField field blank).
I know that I miss something here, but I cannot figure out what. Any tips?
I solved my issue by assigning
just before I save the form. Yeey