Problem:
An HTML - Form with Disabled Input Fields does not return the values back as expected.
When sending the form the data in the disabled input fields are displayed normally. After submitting the data however these fields with ACCEPT HTML-FORM are not returned back.
Why is this?
Resolution:
The reason this is happening is that Disabled fields do not return any value to the server. Therefore the form fields get 0. (not the data expected).
See for further explanation:
http://www.w3.org/TR/REC-html40/interact/forms.html#h-17.12.1