Christian González
Christian González
I am using Drush via composer, not locally, and having the problem.
If you merge this sometimes, could you remove the "multi:" prefix - as it makes not really sense. If there is a comma, it is a list. I only want...
Here's a possible UI from a project I am working on ATM (screenshot in German)  with +/- buttons you add +/- 15 minutes to the current time. I wrote...
Sorry for the late answer. Rounding is always done to "full" 10 minutes. so here, "minus" click would lead to 1:10, "plus" to 1:20. if "units" were set to 15...
You could change the DynamicFormMixin code to the following: ```python ... else: self.fields[name].widget = forms.HiddenInput() #del self.fields[name] ``` Hiding a field is better, as it still includes it in the...
You could add an attribute to DynamicFormMixin (like `hide_unincluded_fields = False`) to either hide the field (as Hiddeninput), or just disable them. Even better would be to make the "including"...
This is even more complicated, as hiding the field does a good job when just using django-forms-dynamic. But when you are using e.g. HTMX to dynamically change field querysets in...
I managed to solve the problem by reloading the whole form using HTMX, and `hx-include`ing all parameters. This works almost perfect. I put the `hx-include="[name=field1],[name=field2],..."` at the form tag, as...
ok, understand. I found another way which allows removing it from the form. And you are right, I played through all versions of hiding, deleting and disabling a widget, and...
`hx-disable` prevents changing the field altogether by htmx. But it is like not using htmx. I **want** to change that field, e.g. give it a class, or even change the...