is there a simple way to do that?? help please!
thanks in advance!
|
is there a simple way to do that?? help please! thanks in advance!
| |||
|
feedback
|
|
I think there is no simple way to do this. You can try to override ModelAdmin class but this is not a "simple" way. But you can use filter_horizontal or filter_vertical to add almost similar functionality | |||
|
feedback
|
|
From this answer it seems like it is possible to use ModelAdmin.formfield_overrides to override the ManyToManyField to use CheckBoxSelectMultiple:
I haven't tried it and am merely quoting from the source, but it seems plausible. Good luck. Warning: as @errx rightly pointed out, the documentation highlights the following caveat:
| |||||
feedback
|
|
This is most certainly possible. Here is the code which you can place in the
This was derived from looking into the admin code. | |||
|
feedback
|