> >>>>>
> <snip>
> I'm still a bit confused on how you deal with links that go to backing
> bean methods for standard links/buttons. As an example, imagine the
> header on a page...
>
> John Doe [edit user] [logs for user] [user summary] [look up company]
> 1455 some address [edit address]
> Somewhere, state, 12456
>
> The example above is a bit exaggerated, but the point is the links(or
> even buttons) would have to access methods in all different kinds of
> backing beans.
> <<<<<<<<<<
You might give the commandLink component a try.
<h:commandLink id="editUser" action="#{somBean.editUser}">
<h:outputText value="edit user"/>
</h:commandLink>
<h:commandLink id="logsForUser" action="#{somBean.logsForUser}">
<h:outputText value="logs for user"/>
</h:commandLink>
> --
> Rick
Gary