Try with

<f:setPropertyActionListener from="#{myvalue}" to="#{myNewValue}" />

Luka Surija

+385 1 61 99 140
+385 98 434 061
[EMAIL PROTECTED]

I.Y. tim d.o.o.
Vrbik 3, HR-10000 Zagreb
www.iytim.hr
[EMAIL PROTECTED]



Łukasz Budnik wrote:
Hi All!

I have a problem with redundancy in my web application and I am
looking for a solution
to this problem.

Let's say I have an application to support the librarians. I have
following views: authorDetails.jsf, bookDetails.jsf,
bookOrderDetails.jsf.

All above listed views use the very same HTML elements.
It's huge redundancy, because they differ only by the value attribute
set in outputTexts.
For example, author's first name is retrieved from three different
managed beans:

authorMBean.author.firstName => in authorDetails.jsf
bookMBean.book.author.firstName => in bookDetails.jsf
bookOrderMBean.order.book.author.firstName => bookOrderDetails.jsf

Is there any method in MyFaces to assign /copy a variable like this:

<copy to="authorDetails" from="authorMBean.author" />
<copy to="authorDetails" from="bookOrderMBean.order.book.author" />

so that later on I could include one common JSP and display the
contents of authorDetails variable?

thanks in advance
best regards
Łukasz

Reply via email to