vote up 0 vote down star

When making forms in Django, the IntegerField comes with a blank choice (a bunch of dashes "------") if called with blank=True and null=True. Is there any way to get ManyToManyField to include such an explicit blank choice?

I've tried subclassing ManyToManyField with no success:

class ManyFieldWithBlank(ManyToManyField):  

    """  
    A Many-to-Many Field with a blank choice  
    """  
    def get_choices_default(self):
        return Field.get_choices(self, include_blank=True)
flag
Do you mean rather than have the user select none of the options you want them to select one option which means: "I'm selecting none of the options?" – thornomad Nov 5 at 18:57
Yes, it's a user interface thing -- they can more easily click the "--------" to convey they aren't selecting any than Ctrl-Click to unselect whichever one(s) they've selected – unknown (google) Nov 5 at 19:16

1 Answer

vote up 3 vote down

That is not really an improvement on the interface, IMO.

Why not have a button in your template saying "none of these" or "reset choices"? Better yet - if your field is called "Blah" make the button say "Unselect all Blah".

The button would just have some javascript to clear out any selection in the select box.

This is a much clearer UI for the user and easy to implement.

Disclaimer: IANADesigner.

link|flag
Agreed: this is a UI issue that should be handled in JS, not via an extra selectable option. – Carl Meyer Nov 6 at 17:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.