Mark Gensler

Results 25 comments of Mark Gensler

The fix to one of the questions you linked to will solve your problem: https://stackoverflow.com/a/24284657/1785448. `django-tinymce` knows to automatically evaluate javascript functions if they are defined in python strings for...

```python from extra_views import FormSetView ``` Hi. The above can be used to render a single formset which is not connected to a model. Inline formsets only exist for models,...

In my opinion, it probably is too niche. The objective of this package is to replicate the functionality of the Django Admin in generic views and it is outside of...

Hi @powderflask, that does sound interesting although I'd be wary of making django-tables2 and django-filter dependencies of this package. Also it would increase the testing complexity as changes to those...

`contrib.SearchableListMixin` hasn't received a lot of maintenance over the years... probably [django-filter](https://github.com/carltongibson/django-filter) deals with this much better now. Are you using the mixin? Feel free to submit a pull request...

Hi @CyberFox001, did you get to the bottom of this in the end? The ``ProcessFormWithInlinesView`` class's implementation of `post()` returns either `forms_valid()` or `forms_invalid()`, and not `form_valid()` or `form_invalid()`. Note...

Thanks for the contribution! Strange that `form_kwargs` isn't working as described in the docs as I'm sure that's something I use in my projects. I'll do some testing and check...

Ah, sorry I misunderstood in my previous response that the get_formset_kwargs wasn't working for you. I see now that you're adding a more user friendly way to do this. I'll...

> Thank you @sdolemelipone for your quick response. The change made are working just fine in my project. How can I check the testings locally to improve the formatting for...

Hi @dw-liedji, I agree that having the `form_kwargs` tucked away inside `formset_kwargs` isn't very user friendly. Adding the class attribute seems like a good idea. It's important that the old...