문제

I want to extend ForeignKeyRawIdWidget so I want to be able to use it without setting raw_id_fields.

With the follwoing I don't get an error but I see no effect:

# models.py
class Product(models.Model):
    ...

class GroupProduct(Product):
    ...
    products = models.ManyToManyField(Product, related_name="%(class)s_related")

# forms.py
class GroupProductAdminForm(forms.ModelForm):    
    class Meta:
        model = GroupProduct
        widgets = {
            'products': ForeignKeyRawIdWidget(GroupProduct._meta.get_field('products').rel),
        }

This gives me an error: init() takes at least 2 non-keyword arguments (1 given)

products = forms.ModelMultipleChoiceField(widget=ForeignKeyRawIdWidget(GroupProduct._meta.get_field('products').rel))

How do I do that?

Thanks

도움이 되었습니까?

해결책 2

Using ManyToManyRawIdWidget instead of ForeignKeyRawIdWidget fixed it for me.

다른 팁

You forgot to pass the related Model-QuerySet to ModelMultipleChoiceField.

products = forms.ModelMultipleChoiceField(Product.objects, widget=ForeignKeyRawIdWidget(GroupProduct._meta.get_field('products').rel))
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top