There is no way to have a tri-state check button (yes, no, null) in HTML, right?
Are there any simple tricks or work-arounds without having to render the whole thing by oneself?
|
|
This may help you Tri-State Checkbox using Javascript |
|||||||||||
|
|
Another alternative would be to play with the checkbox trasparency for the "some selected" state (as Gmail Given a checkbox with an ID The CSS class that fades the "select all" checkbox would be the following:
And the JS code that handles the tri-state of the select all checkbox is the following:
You can try it here: http://jsfiddle.net/98BMK/ Hope that helps! EDIT Thanks to Janus Troelsen's comment, I realised there is a quite better solution for the problem. HTML5 defines a DOM attribute for HTML checkboxes called
indeterminate state cannot be set in the HTML markup, it can only be done via Javascript (see this JSfiddle test and this detailed article in CSS tricks)
|
|||||||||||
|
|
You could use HTML's |
|||||
|
|
You will definitely need a javascript solution, if you don't want to use radio buttons. Check out this http://www.terminally-incoherent.com/blog/2008/03/24/3-value-checkbox-with-jquery/ example which is using the jQuery library. |
|||
|
|
Here's a solution that is pure CSS and native checkboxes. Proof of concept: http://www.gentomi.com/tri-state-checkbox.html It works in Chrome, FF, Safari, IE7+. But I have not tested it on a Mac or X-Windows, where the native checkboxes might give the CSS positioning some fits. I have not tested on IE9 either. (I'd appreciate feedback here for those untested cases too.) |
|||||||||||
|
|
You can use radio groups to achieve that functionality:
|
|||
|
You can use an indeterminate state: http://css-tricks.com/indeterminate-checkboxes/ |
|||
|
|
|
You'll need to use javascript/css to fake it. Try here for an example: http://www.dynamicdrive.com/forums/archive/index.php/t-26322.html |
|||
|
|
|
It's possible to have HTML form elements disabled -- wouldn't that do? Your users would see it in one of three states, i.e. checked, unchecked, and disabled, which would be greyed out and not clickable. To me, that seems similar to "null" or "not applicable" or whatever you're looking for in that third state. |
|||||
|
|
There's a simple JavaScript tri-state input field implementation at https://github.com/supernifty/tristate-checkbox |
|||
|
|
|
The jQuery plugin "jstree" with the checkbox plugin can do this. http://www.jstree.com/documentation/checkbox -Matt |
|||
|
|