| Author |
Setting mutiple backing bean attributes from rich:calender component
|
Darren Carr
Greenhorn
Joined: Jul 08, 2010
Posts: 3
|
|
Hi Everyone,
I am very much a beginner with JSF and have been asked to do some dev work on an application (original devloper has left the company) and no one here knows JSF that well. So Its time for me to learn and get to grips with the framework.
I been working through quite well and googling and reading has normally found the answer to any problems, however im stuck on one particular probem.
I basically have the following rich:calender component below :
This works fine and sets the backing bean attrubute correctly (viewBooking.fromRange). However is it possible in JSF that this component can set "two" backing bean attributes"? I.E. After the user action I not only set (viewBooking.fromRange) but also (viewBooking.toRange) too?
|
 |
Tim Holloway
Saloon Keeper
Joined: Jun 25, 2001
Posts: 12513
|
|
Welcome to the JavaRanch, Darren!
You can set the the "toRange" backing bean property by copying the "fromRange" property into it in your "resetForm" action method.
That's half the battle. However, presumably there's a separate calendar control that displays and controls "toRange", so your a4j:support tag needs to ensure that that control is updated in the View. Use the "reRender" attribute to indicate the id of that control so that it will be refreshed from the updated backing bean.
|
One of the most odious afflictions that Business has inflicted on the modern English language is "pro-active". Most of the time it's simply redundantly used in place of the simple old word "active". And a good deal of the rest of the time it means "You're not overworked enough yet, so go out and find more!"
|
 |
Darren Carr
Greenhorn
Joined: Jul 08, 2010
Posts: 3
|
|
Hi Tim,
Thank you very much for the reply...
I was unable to put the logic into resetForm as the method is in the superclass of my backing bean (viewBookingBean)
What I have done is created an atrribute in my backing bean called fromToRange which sets two values I require
My form looks like this, which has thee rich calenders..
However when all three dates are filled in and I click the "Download data as CSV" button on the first form , all three setters are called wheres my values of fromRange and toRange are overwittten.
Is there a way that I can stop this from happening so that only the setters of the particular component are called (e.g setFromToRange )
Thnaks for the help :-)
|
 |
 |
|
|
subject: Setting mutiple backing bean attributes from rich:calender component
|
|
|