I thought they could be, but as I'm not putting my money where my mouth was (so to speak) setting the readonly attribute doesn't actually seem to do anything.

I'd rather not use Disabled, since I want the checked check boxes to be submitted with the rest of the form, I just don't want the client to be able to change them under certain circumstances.

link|improve this question

65% accept rate
feedback

24 Answers

This is a checkbox you can't change:

<input type="checkbox" disabled="disabled" checked="checked">

Just add disabled="disabled" as attribute.

link|improve this answer
4  
you are the first one to answer the question. all other posters were questioning the authors intention. thats why i gave a lot of negative votes. – usr Aug 14 '09 at 14:46
44  
Note that "disabled" checkbox doesn't send value via POST data. – firian Sep 20 '11 at 13:56
7  
@powtac You fail to address that he wants the data posted, your example does not do that. – David Mårtensson Feb 8 at 16:59
feedback

READONLY doesn't work on checkboxes as it prevents you from editing a field's value, but with a checkbox you're actually editing the field's state (on || off)

From faqs.org:

It's important to understand that READONLY merely prevents the user from changing the value of the field, not from interacting with the field. In checkboxes, for example, you can check them on or off (thus setting the CHECKED state) but you don't change the value of the field.

If you don't want to use disabled but still want to submit the value, how about submitting the value as a hidden field and just printing it's contents to the user when they don't meet the edit criteria? e.g.

// user allowed change
if($user_allowed_edit)
{
    echo '<input type="checkbox" name="my_check"> Check value';
}
else
{
    // Not allowed change - submit value..
    echo '<input type="hidden" name="my_check" value="1" />';
    // .. and show user the value being submitted
    echo ' Check value: 1';
}
link|improve this answer
5  
Works, but it's kind of.. well dirty, readonly on checkboxes should simply do what intuition tells. – levhita Dec 16 '08 at 21:41
2  
Intuition fools us, as ConroyP explained. – ANeves May 5 '10 at 18:52
feedback

This presents a bit of a usability issue.

If you want to display a checkbox, but not let it be interacted with, why even a checkbox then?

However, my approach would be to use disabled (The user expects a disabled checkbox to not be editable, instead of using JS to make an enabled one not work), and add a form submit handler using javascript that enables checkboxes right before the form is submitted. This way you you do get your values posted.

ie something like this:

var form = document.getElementById('yourform');
form.onSubmit = function () 
{ 
    var formElems = document.getElementsByTagName('INPUT');
    for (var i = 0; i , formElems.length; i++)
    {  
       if (formElems[i].type == 'checkbox')
       { 
          formElems[i].disabled = false;
       }
    }
}
link|improve this answer
+1 for usability! – Martin Aug 13 '09 at 16:45
10  
Another option is to display the disabled checkbox (or an image or anything to denote checked/unchecked) and have a hidden input that is what is processed by the server. – Juan Mendes Apr 2 '10 at 15:55
It's not a usability issue when you got a form in which some of your decision affects some other inputs (aka: setting a value that cannot be touched if you don't undo your first action.). I hate when people try to change people's mind instead of answering (this is not about you @FlySwat, you answered). – clinisbut Oct 7 '10 at 14:01
The purpose is to use a checkbox as a display field "this value is true", which is easier to scan down a table than a bunch of "true"/"false"-s. Sure, you could use an icon but, in a form, checkboxes seem there, ripe for using. – Olie Aug 13 '11 at 20:13
@FlySwat: +1 this to me is the best solution, and it could be used also fo <SELECT> list and other types of <INPUT> fields, see here: stackoverflow.com/q/1191113/260080 – Marco Demaio Nov 10 '11 at 11:50
feedback

you can use this:

<input type="checkbox" onclick="return false" onkeydown="return false" />
link|improve this answer
Ok, this worked really well for me for the un-checked cases, but how come changing to ..."return true"... doesn't work? What's the syntax for that? (+1 for half the answer, anyway :) – Olie Aug 13 '11 at 20:40
2  
Returning false in javascript prevents continuing the chain of execution for the click or key handler. Has nothing to do with the checkbox's state – Jessica Brown Aug 20 '11 at 2:03
2  
PS...if you want the checkbox to be in the checked state you need to add checked="checked", not mess with the javascript. The javascript is just there to force mouse clicks to be ignored on the input object, not to set state of the checkbox. – Jessica Brown Aug 20 '11 at 2:15
feedback
<input type="checkbox" onclick="this.checked=!this.checked;">

But you absolutely MUST validate the data on the server to ensure it hasn't been changed.

link|improve this answer
I found this to be the best solution; plus, I can call another piece of code (say, some jquery-stuff) to display a nice little sign that says "you can't change this until you first do x". So something like: "...onclick='this.checked = !this.checked; javascript:theCheckboxWasClicked();'..." – Bane Mar 23 '11 at 18:47
feedback
<input type="checkbox" readonly="readonly" name="..." />

with jquery:

$(':checkbox[readonly=readonly]').click(function(){
            return false;
        });

it still might be a good idea to give some visual hint (css, text,...), that the control won't accept inputs.

link|improve this answer
This didn't work in ie6 for me, the readonly attribute filter doesn't work correctly. I took that out of the filter and put the attribute check in the body of the function and it works fine in ie6. – gt124 Jun 16 '10 at 17:44
does not work in chrome neither – Tom Maeckelberghe Aug 11 '11 at 10:47
feedback

onclick="javascript: return false;"

link|improve this answer
Hmmm... this is working for the false/unchecked case, but onclick="javascript: return true;" just makes it act like a normal checkbox. Hints? Thanks! – Olie Aug 13 '11 at 20:46
feedback
<input name="isActive" id="isActive" type="checkbox" value="1" checked="checked" onclick="return false"/>
link|improve this answer
feedback

an alternative idea is to use an overlay and cover up your readonly inputs

http://pure-essence.net/2011/09/22/jquery-read-only-elements/

link|improve this answer
feedback

Simplest (in my view):

onclick="javascript:{this.checked = this.defaultChecked;}"
link|improve this answer
WTF?!? This is wrong. Do not do this. – kzh Apr 20 '11 at 1:26
@kzh: Why not? Of the solutions offered, it's the one that actually works. Why do you recommend against it? – Olie Aug 13 '11 at 21:06
1  
Don't put javascript: in an onclick, it works, but does not do what you think it does. – kzh Aug 15 '11 at 14:37
feedback

No, but you might be able to use javascript events to achieve something similar

link|improve this answer
feedback

I just don't want the client to be able to change them under certain circumstances.

READONLY itself won't work. You may be able to do something funky w/CSS but we usually just make them disabled.

WARNING: If they're posted back then the client can change them, period. You can't rely on readonly to prevent a user from changing something. The could always use fiddler or just chane the html w/firebug or some such thing.

link|improve this answer
You are totally right, that's why i also check that on the server side,setting this is just to improve user experience on the client side. – levhita Dec 16 '08 at 21:42
feedback

You could always use a small image that looks like a check box.

link|improve this answer
2  
A difficulty with using a picture of a checkbox is that the checkbox itself is drawn by the browser. Some browsers just use the native controls from the OS, but others draw their own stylish controls. So your checkbox picture wouldn't look the same as other checkboxes on the page in some browsers. Of course you could replace all checkboxes on the page with your own style... – Mnebuerquo Sep 26 '09 at 5:38
feedback

My solution is actually the opposite of FlySwat's solution, but I'm not sure if it will work for your situation. I have a group of checkboxes, and each has an onClick handler that submits the form (they're used for changing filter settings for a table). I don't want to allow multiple clicks, since subsequent clicks after the first are ignored. So I disable all checkboxes after the first click, and after submitting the form:

onclick="document.forms['form1'].submit(); $('#filters input').each(function() {this.disabled = true});"

The checkboxes are in a span element with an ID of "filters" - the second part of the code is a jQuery statement that iterates through the checkboxes and disables each one. This way, the checkbox values are still submitted via the form (since the form was submitted before disabling them), and it prevents the user from changing them until the page reloads.

link|improve this answer
feedback

The main reason people would like a read-only check-box and (as well) a read-only radio-group is so that information that cannot be changed can be presented back to the user in the form it was entered.

OK disabled will do this -- unfortunately disabled controls are not keyboard navigable and therefore fall foul of all accessibility legislation. This is the BIGGEST hangup in HTML that I know of.

link|improve this answer
feedback

Contributing very very late...but anyway. On page load, use jquery to disable all checkboxes except the currently selected one. Then set the currently selected one as read only so it has a similar look as the disabled ones. User cannot change the value, and the selected value still submits.

link|improve this answer
feedback

When posting an HTML checkbox to the server, it has a string value of 'on' or ''.

Readonly does not stop the user editing the checkbox, and disabled stops the value being posted back.
One way around this is to have a hidden element to store the actual value and the displayed checkbox is a dummy which is disabled. This way the checkbox state is persisted between posts.

Here is a function to do this. It uses a string of 'T' or 'F' and you can change this any way you like. This has been used in an ASP page using server side VB script.

public function MakeDummyReadonlyCheckbox(i_strName, i_strChecked_TorF)

    dim strThisCheckedValue

    if (i_strChecked_TorF = "T") then
        strThisCheckedValue = " checked "
        i_strChecked_TorF = "on"
    else
        strThisCheckedValue = ""
        i_strChecked_TorF = ""
    end if

    MakeDummyReadonlyCheckbox = "<input type='hidden' id='" & i_strName & "' name='" & i_strName & "' " & _
        "value='" & i_strChecked_TorF & "'>" & _
    "<input type='checkbox' disabled id='" & i_strName & "Dummy' name='" & i_strName & "Dummy' " & _
        strThisCheckedValue & ">"   
end function

public function GetCheckbox(i_objCheckbox)

    select case trim(i_objCheckbox)

        case ""
            GetCheckbox = "F"

        case else
            GetCheckbox = "T"

    end select

end function

At the top of an ASP page you can pickup the persisted value...

strDataValue = GetCheckbox(Request.Form("chkTest"))

and when you want to output your checkbox you can do this...

response.write MakeDummyReadonlyCheckbox("chkTest", strDataValue)

I have tested this and it works just fine. It also does not rely upon JavaScript.

link|improve this answer
feedback

In old HTML you can use

<input type="checkbox" disabled checked>text

but actually is not recommended to use just simply old HTML, now you should use XHTML.

In well formed XHTML you have to use

<input type="checkbox" disabled="disabled" checked="checked" />text <!-- if yu have a checked box-->
<input type="checkbox" disabled="disabled" />text <!-- if you have a unchecked box -->

well formed XHTML requires a XML form, thats the reason to use disabled="disabled" instead of simply use disabled.

link|improve this answer
But, in this case it will not be submitted in POST array. Sometimes the same behaviour isn't acceptable. – BasTaller Nov 20 '11 at 23:15
feedback

It's not very accessible, but this works quite well. Trap the click event and force the state to stay ON. :)

$("input.readOnlyCheckBox").click(function(){
    $(this).attr('checked',true);
});
link|improve this answer
feedback

When submitting the form, we actually pass the value of the checkbox, not the state (checked/unchecked). Readonly attribute prevents us to edit the value, but not the state. If you want to have a read-only field that will represent the value you want to submit, use readonly text.

link|improve this answer
feedback

If you need the checkbox to be submitted with the form but effectively read-only to the user, I recommend setting them to disabled and using javascript to re-enable them when the form is submitted.

This is for two reasons. First and most important, your users benefit from seeing a visible difference between checkboxes they can change and checkboxes which are read-only. Disabled does this.

Second reason is that the disabled state is built into the browser so you need less code to execute when the user clicks on something. This is probably more of a personal preference than anything else. You'll still need some javascript to un-disable these when submitting the form.

It seems easier to me to use some javascript when the form is submitted to un-disable the checkboxes than to use a hidden input to carry the value.

link|improve this answer
feedback

Try this to make the checkbox read-only and yet disallow user from checking. This will let you POST the checkbox value. You need to select the default state of the checkbox as Checked in order to do so.

<input type="checkbox" readonly="readonly" onclick="this.checked =! this.checked;">

If you want the above functionality + dont want to receive the checkbox data, try the below:

<input type="checkbox" readonly="readonly" disabled="disabled" onclick="this.checked =! this.checked;">

Hope that helps.

link|improve this answer
feedback

<input type="checkbox" onclick="return false" /> will work for you , I am using this

link|improve this answer
feedback

this will work

<input type="checkbox" name="Name" checked onclick='this.checked = true;'>

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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