Hi,

I've a problem with requestScope and beans action method.

AS soon as I put my inline editing table bean into request scope, the action
methods won't work, except for the first one (Edit).

That are the links available in the last column of each row.

<tr:commandLink action="#{backingBean.edit}" text="Edit"
partialSubmit="true" rendered="#{!backingBean.editMode and
backingBean.visibleOnly}" immediate="true" />
<tr:commandLink action="#{backingBean.save}" text="Save"
partialSubmit="true" rendered="#{!backingBean.visibleOnly}" />
<tr:commandLink action="#{backingBean.cancel}" text="Cance"
partialSubmit="true" rendered="#{!backingBean.visibleOnly}"
immediate="true">
        <tr:resetActionListener/>
</tr:commandLink>

save and cancel never gets called, if the backingBean is in request scope.

With session scope all works fine.

Are there any knowing bugs or limitations?

--
Kind regards,
Mathias

Reply via email to