Richfaces a4j achtionparam set null value
Posted
by Jurgen H
on Stack Overflow
See other posts from Stack Overflow
or by Jurgen H
Published on 2010-03-10T09:55:34Z
Indexed on
2010/04/23
17:13 UTC
Read the original article
Hit count: 332
I am trying to reset some values in a form using the a4j:actionParam tag. But it seams that null values never arrive in the target bean. The converter receives it correctly, returns null, but it is never set in the bean.
The target is to fill in the start and endDate for different predefined values (last week, last month etc). For the "This week" value, the endDate must be reset to null.
<rich:menuItem value="Last week">
<a4j:support event="onclick" reRender="criteriaStartCalendar,criteriaEndCalendar">
<a4j:actionparam name="startDate" value="#{dateBean.lastWeekStart}" assignTo="#{targetBean.startDate}" />
<a4j:actionparam name="endDate" value="#{dateBean.lastWeekEnd}" assignTo="#{targetBean.endDate}" />
</a4j:support>
</rich:menuItem>
© Stack Overflow or respective owner