I have to display a form and the users must decide on selecting just one or no option.
A Checkbox will work but it’s not mutually exclusive.
A RadioBox will work but I will have to add an extra value with None.
What is the best practice for this ?
Update
Just to be clear an admin must decide if a user can edit or view an article.
I would like a list of checkboxes with Edit(includes View) and View.
If I use 2 checkboxes then be can select both of them and that’s not ok, cause Edit would be enought.
If I use 2 radioboxes they will be excluded but I need an extra one for none.
If I use a list that’s not pretty.
Radio with the extra option, select is hideous in terms of usability.