HTML/JSP Disabled Form Field's Strange Behavior
This post will show you how to generate disabled field behavior for any of the input fields in HTML. Read on to learn more.
Join the DZone community and get the full member experience.
Join For FreeDisabled Form Fields of HTML Will Not Get the Values (Null) After Submitting the Form
Using the code below for the input form fields in HTML will generate the disabled field. The disabled field is the one which is not editable, not focusable, won’t get tab navigation, and can’t select the field. We can apply this attribute on all input fields, buttons, select box, etc.
Please see the code below:
<input type=”text” name=”accountNumber” value=”123455” disabled=”disabled” />
This will generate the disabled text field where we are unable to edit and select the field.
Characteristics of Disabled Form Fields
- Disabled form field cannot be focusable, i.e., you cannot focus the field.
- Disabled fields are non-editable.
- Disabled fields will not be submitted when submission of the form happens or when we click on the
Submit
button. - Disabled fields will give null values after submitting the form where you are getting the values (it may be struts action class in case of struts or servlet class in case of servlets).
- We can modify the values of disabled fields only through JavaScript at the client side.
How to Get Disabled Behavior for Any of the Input Fields and Get the Non-null Values After Form Submission
- Make the field
readOnly
instead ofdisabled
by putting the attribute asreadonly=”readonly”
for html fields andreadOnly=”true”
for struts JSP fields. - Prepare the CSS with the color of disabled fields (i.e. gray color), and apply the CSS to the fields which you made as readonly. Now the field is uneditable because of the readonly attribute and looks like the disabled field because of the CSS applied.
Characteristics of readonly
Fields
- Fields are not editable through the screen.
- Fields can be modified through JavaScript code at client side.
- Fields can be Focusable.
- Fields can be selectable.
- Tab navigation is possible on the fields.
- Values can be submitted after form submission.
- There are no null values after form submission whenever the field contains values while submitting.
This will solve the issue with disabled fields used in the view layer for a specific purpose and will help to get the disabled behavior.
For other posts please visit my blog : Journey Towards Java
Published at DZone with permission of Shidram BJ. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments