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

I have an inputText on my JSF page and a JavaScript calendar popup is attached to it. Conditionally I'm setting the inputText disabled property to true and false.

When I set disabled = true and when I then write JSF values to the database, the value in inputText is null. I believe this is due to the disabled = true.

Is there any way to retain the value in the inputText box even though disabled = true?

I am using JSF 1.1.

share|improve this question

3 Answers

up vote 0 down vote accepted

Another workaround would be to temporarily enable this input when submitting the form, and after model is updated, disable it again. There also was some solution with using hidden input with the same id, but unfortunately I don't remember how it exactly works.

share|improve this answer

You should try readonly=true instead of disabled=true (just like in plain HTML)

share|improve this answer
If I make readonly true, then from calendar popup window user could select a date values in inputText field. – Polppan Aug 7 '11 at 8:44
maybe you should clarify what you would like to disable, and what should not be disabled... – Tristan Aug 7 '11 at 10:03
Based on a condition, I would like to disable the inputText. InputText is attached with a popup calendar for user to pick dates. If I make inputText readonly then user is able to select dates from popup calendar. Ideally I would like user not to make any change in inputText. Like you mentioned disabled would make values null in jsf page. – Polppan Aug 7 '11 at 10:25

The browser is following the HTML 4.0.1 spec:

A successful control is "valid" for submission.

...elided text...

  • Controls that are disabled cannot be successful.

Disabled form controls are not submitted as part of the form.

As an additional security measure the JSF component renderer should not process the value in the Apply Request Values phase if it finds isDisabled() == true.

From the HTML render kit doc:

If a Renderer chooses to implement decode behavior, it must consult the "disabled" and "readonly" attributes of the component to be rendered, if the value of either attribute is equal to, ignoring case, the string "true" (without the quotes) the decode method must take no action and return immediately.

Since the Apply Request Values phase runs first, evaluation of these booleans cannot be affected by anything in your form submission (unless you bind them to #{param.foo} expressions - beware of any security considerations).

Your form design and submission strategy must take these constraints into account.

share|improve this answer

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.