Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hopefully an easy question for you asp.net mvc gurus:

I have a checkbox, created like this:

<%=Html.CheckBox("MyCheckBox", true, new { disabled = "disabled"})%>

In my action I am checking the value like so:

bool isChecked = form["MyCheckBox"].Contains("true");

I expect this to return true, as it is checked. However the hidden element that gets created has a false value:

<input checked="checked" disabled="disabled" id="MyCheckBox" name="MyCheckBox" type="checkbox" value="true" />
<input name="MyCheckBox" type="hidden" value="false" />

First, is there a way to make the HtmlHelper behave as I expect it should? Or is manually constructing the input/creating my own helper method the only way? (not that this is a big deal...)

Second, can anyone shed some light on why the checkboxes behave this way? Am I incorrect in assuming a disabled checkbox that is ticked should == true? Does a disabled state semantically mean false?

share|improve this question

1 Answer

up vote 13 down vote accepted

An input field marked with the disabled="disabled" attribute NEVER sends its value to the server. If you want to achieve this you could use the readonly="readonly" attribute which still prevents the user from modifying the value but sends the existing value when the form is submitted.

share|improve this answer
1  
+1: I found this out the hard way not that long ago as I am also a beginner in MVC. However, do you have a good suggestion if it is an input field and I want to make it disabled/readonly? Currently setting "readonly" does NOT grey the input field like it does for the "disabled". – VoodooChild Jan 17 '11 at 22:03
3  
@VoodooChild, yeah that happens with FireFox and checkboxes. Common workarounds involve disabled with a backing hidden field. – Darin Dimitrov Jan 17 '11 at 22:06
1  
Thanks, I did not know that. I went with a custom HtmlHelper that uses the 'disabled' attribute and renders a hidden field. – elwyn Jan 17 '11 at 22:10
1  
@elwyn, yes that's a very good workaround. – Darin Dimitrov Jan 17 '11 at 22:15
@elwyn: could you please post sample of your work around when you get a chance? I would like to keep it for a reference on this question. Thanks! – VoodooChild Jan 18 '11 at 15:18
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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