up vote 0 down vote favorite
share [g+] share [fb]

if you set "disabled" on a input and submit a form, that field doesn't seem to be in the Request.Form when you post to the server.

What is the logic behind the design decision to not post this field solely based on some presentation layer decision?

This makes no sense to me . ..

link|improve this question

You know, after posting more than 900 questions, surely you've learned what sort of language not to use on SO? – Yi Jiang Sep 8 '10 at 12:54
@Yi Jiang - huh? – leora Sep 8 '10 at 13:01
Yeah, I'm a bit baffled too. Was there strong language that got edited out? – Pekka Sep 8 '10 at 13:14
@Pekka - i think he was referring to some grammatical errors (a bit of a rushed question). i have since edited the question to be clearer. I also thought at first it was a statement about some cursing or something :) – leora Sep 8 '10 at 13:37
feedback

1 Answer

up vote 3 down vote accepted

Works as specified by the W3C (albeit a bit cryptical):

Disabled controls cannot be successful. [...]

A successful control is "valid" for submission

If you want to make an element unaccessible for the user, while sending along the value, use the readonly property.

link|improve this answer
1  
Readonly is exactly right, (I know Pekka knows) but ooo if you are not aware do not trust the value of a readonly field because it can be tampered with by the user. I learned this the hard way. – Chris Sep 8 '10 at 12:54
i understand that i should use "Readonly" but i still dont agree with the design decision to not post disabled controls. – leora Sep 8 '10 at 12:59
@ooo it makes sense in my opinion. If you want a value not posted, disable it. If you want it posted but the user unable to change it, make it read only. I've needed both cases when working with forms. – Pekka Sep 8 '10 at 13:00
the thing is that readonly doesn't change the visualization so i have to add some css to show the user that its not editable (readonly doesn't clearly highlight this) – leora Sep 8 '10 at 13:06
@ooo I agree, that is a definite shortcoming, especially seeing that the default "disabled" state is almost impossible to simulate using CSS. It's rather the browsers' fault than the specification's though - they are free in rendering it as they wish. – Pekka Sep 8 '10 at 13:15
feedback

Your Answer

 
or
required, but never shown

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