I use myfaces' aliasbean like so:
<x:aliasBean alias="#{BACKING}" value="#{centres}" >
...at the top of each page, then use #{BACKING.xxx} throughout the page. It
makes it easier to reuse blocks of code in different pages without searching
for and replacing lots of common stuff. You could probably combine that with
jstl's if tags or something like that.
On Saturday 24 December 2005 22:51, Dave wrote:
> Thanks, Mike.
>
> It would be very nice if JSF (or MyFaces) allow method binding for
> backing bean. It would allow a different way of design and thinking:
> backing bean changes dynamically without page navigation
> (...snip...)