todoListBean is request scoped not session scoped. Is there anyway to
use a request scoped bean in this case?
Thanks.
On Wed, 2008-04-02 at 11:10 -0600, Andrew Robinson wrote:
> Is todoListBean session scoped? If your todoList is not available
> during decode, the rendered will fail and non-rendered components are
> not decoded.
>
> On Wed, Apr 2, 2008 at 10:54 AM, Scott Belnap <[EMAIL PROTECTED]> wrote:
> > I have a page that has the following commandButton.
> >
> > <h:commandButton value="Update List" action="#{todoListBean.update}"
> > rendered="#{todoListBean.todoList.listId ne 0}" />
> >
> > When I click on the button it doesn't execute the action it just
> > refreshes the page. But if I remove the rendered property so the
> > commanButton tag looks like:
> >
> > <h:commandButton value="Update List" action="#{todoListBean.update}" />
> >
> > jsf will execute the action #{todoListBean.update}. Does anyone know
> > why when I have the rendered property in the jsf tag the action doesn't
> > get executed?
> >
> >
> >