LeVon Smoker

Results 12 comments of LeVon Smoker

What's the status of this issue? I'm waiting to implement redash for our organization but need this enhancement (similar to what @ice2038 proposed) first.

I would also like to know how to update/view existing parent/child data using form collections - not just add new objects (database table rows).

Yes, that's it. My attempts with my own models haven't worked out, but I'll keep at it.

I see that the FormCollection classes in company.py only have `retrieve_instance` methods not `construct_instance` and `model_to_dict`. I have tried overriding all 3 of those methods in my child FormCollection but...

I did. I think the problem I'm having relates to my child model's ForeignKey field - I did not use the `related_name` parameter which means the reverse relation becomes something...

I did learn that I need to set the `related_name` on the child model for that form collection to load existing rows (as I mentioned previously). Here is the repo...

`allow_email_download` renders to ``

Also, `help_text` is not hidden when it should be.

Thanks. I tried using `attrs={'df-show': ".allow_email_download"},` (which seems more correct) as well as overriding the widget to `CheckboxInput` (which appears to be the default for `BooleanField` anyway). Unfortunately, neither of...

I did make some discoveries... So there is more complexity in my app than my example above shows. `allow_email_download` is actually in a form inside a collection, so the path...