I bet it is your rendered attributes. commandLink's will not decode
actions if not rendered. This is evaluated at the beginning of the
request, before all updates are processed. When do you set editMode,
visibleOnly, etc?

-Andrew

On Tue, Apr 29, 2008 at 4:39 PM, Mathias Walter <[EMAIL PROTECTED]> wrote:
> 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