django-smart-selects icon indicating copy to clipboard operation
django-smart-selects copied to clipboard

chained and grouped selects for django forms

Results 47 django-smart-selects issues
Sort by recently updated
recently updated
newest added
trafficstars

You **MUST** use this template when reporting issues. Please make sure you follow the checklist and fill in all of the information sections below. ---------------- All versions of django-smart-selects prior...

For some reasons, when using `horizontal=True`, the `change` event is triggered twice, and so is the API request to retrieve the values. The result is that the `_from` SelectBox is...

django-smart-selects is currently initialising fields that aren't displayed on screen (including `__prefix__` in the id) https://docs.djangoproject.com/en/3.2/topics/forms/formsets/#empty-form These are usually created for one/many-to-many relationships, and are cloned when a user clicks...

Remove both `JQUERY_URL` and `USE_DJANGO_JQUERY` and always use Django jQuery version. See https://github.com/jazzband/django-smart-selects/pull/270#issuecomment-620387677 BTW, jQuery 2.2.0 is quite old https://snyk.io/vuln/npm:[email protected]

When I try django-smart-selects 1.5.9, I can select chained content and save it.But when I edit the form again, the chained content appears empty.The browser request and response reported no...

You **MUST** use this template when reporting issues. Please make sure you follow the checklist and fill in all of the information sections below. ---------------- All versions of django-smart-selects prior...

I would like to ask if the issue under this https://github.com/jazzband/django-smart-selects/issues/193 has been resolved. I am facing the same exact issue. At first it was good but adding an additional...

In the below scenario, how to display the subcategories of the selected category only in admin site? Chained ForeignKey/ Chained Many to Many doesn't provide such use case.. class Category(models.Model):...

first show my models: ``` > class District(models.Model): > code = models.CharField(verbose_name='乡镇编码',max_length=100,unique = True) > name = models.CharField(verbose_name='乡镇名称',max_length=100) > class Meta: > verbose_name = '乡镇信息' > verbose_name_plural = verbose_name >...

I had a JSON Encode Serialize error when I use a Model with ID as UUID. ```python raise TypeError(f'Object of type {o.__class__.__name__} ' TypeError: Object of type UUID is not...