This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes JSF and the fly likes Question on RELOAD of JSP page AFTER facesMessage fixed Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » JSF
Reply Bookmark "Question on RELOAD of JSP page AFTER facesMessage fixed" Watch "Question on RELOAD of JSP page AFTER facesMessage fixed" New topic
Author

Question on RELOAD of JSP page AFTER facesMessage fixed

Melinda Savoy
Ranch Hand

Joined: Jun 21, 2005
Posts: 375

I have a JSP page whereby when the user clicks the submit button I validate the input texts and the values selected from dropdown boxes. Also, I have 2 dropdown boxes whereby I default the values and then DISABLE the dropdown box so that no entries can be changed in those dropdown boxes. The issue is after the fix is made the DROPDOWN BOXES are enabled again and the values are changed to their default values.

The DISABLE of the dropdown boxes is done by JQuery based on values entered in input fields.

Is there a way that after the facesMessage is fixed and the page is realoded that the values in the dropdowns are maintained and the DISABLED attribute is maintained as well on the JSP page?

Any suggestion/direction would be appreciated.

Thanks.
Ilari Moilanen
Ranch Hand

Joined: Apr 15, 2008
Posts: 197
Why the values of the dropdown boxes change to their default values? Have you checked if this behavior occurs even id you do not disable them? If I remember correctly disabled inputs DO NOT send their data to server. So your logic is faulty there. Have you tried readonly (instead of disabled) or similar?

As for how to disable input after the reload I have done something similar (not with JQuery though) and I just do what I have to do (with javascript) when the page has been loaded. I know that it is not a perfect solution but it works in my particular needs.
Something like this:

(where the init() is a javascript funtion that can for example disable those dropdown boxes after the reload etc.)
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Question on RELOAD of JSP page AFTER facesMessage fixed
 
Similar Threads
JSF+Portlet Problem
dropdown selection in Struts2
Problem with persisting text box values in JSP
Show the selected value in dropdown again
Populate the search box with the value selected in another JSP page