Updated version of TilesViewHandler

2007-10-31 Thread Garner, Shawn
Since the release of a GA version of Standalone Tiles when can we expect a new version of the TilesViewHandler compatible with 2.0.5 of standalone tiles? I tried the current one with 2.0.5 and got no class def found exceptions. Shawn -Message Disclaimer- This e-mail message is intend

digest version of this mailing list?

2006-07-11 Thread Garner Shawn
Is there a digest version of this mailing list? Shawn

Re: [help] questions

2006-07-08 Thread Garner Shawn
ki.apache.org/myfaces/ExecutingMethodsFromLinkButtonParameters It describes the *problem* and updateActionListener as a solution On 7/8/06, Garner Shawn <[EMAIL PROTECTED]> wrote: > Can you go into how to use t:updateActionListener and setPropertyActionListener? > > Shawn > --

Re: [help] questions

2006-07-08 Thread Garner Shawn
Can you go into how to use t:updateActionListener and setPropertyActionListener? Shawn ---Original Message-- Also is there an easy way to pass to the action which product it is when you click on the link? t:updateActionListener fr

Facelets & Shale

2006-07-07 Thread Garner Shawn
Any one using Facelets and Shale together? If I comment out the shale application filter and mapping everything works fine. When I uncomment them I get a 404 error. Also I can't find anything in the Tomcat logs. Not sure where to look though. Can anyone help me? Shawn

Re: [help] questions

2006-07-06 Thread Garner Shawn
Is it possile to map it to a generic page instead of a specific. Since this is used on a template I don't want to have to declare the bean for every possible view that uses the template. So can I do *$products ... instead of welcome$p

Re: [help] questions

2006-07-06 Thread Garner Shawn
So something like this? Do I need the part? AppSetupBean com.age.j.soft.beans.AppSetupBean application welcome$products com.age.j.soft.beans.ProductBackingBean request

Re: [help] questions

2006-07-06 Thread Garner Shawn
I was going to do that in the init method of the viewcontroller interface for the bean init method unless you have another better place to do it? I'm just going to do a Hibernate query which should return a list. On 7/6/06, Craig McClanahan <[EMAIL PROTECTED]> wrote: On 7/6/06, G

Re: [help] questions

2006-07-06 Thread Garner Shawn
so in my dataList I can do #{welcome$products.productsList} productsMangedBean java.util.ArrayList application welcome$products com.age.j.soft.beans.ProductBackingBean requ

Re: [help] questions

2006-07-06 Thread Garner Shawn
is if you like to use the properties for instance: ... -Matthias On 7/6/06, Garner Shawn <[EMAIL PROTECTED]> wrote: > hmm this makes it difficule because I'm using facelets and a template > my page is navigation.xhtml but it is used in template.xhtml from welcome.xhtml > s

Re: [help] questions

2006-07-06 Thread Garner Shawn
t [1] http://www.onjava.com/pub/a/onjava/2004/06/09/jsf.html On 7/6/06, Garner Shawn <[EMAIL PROTECTED]> wrote: > How does shale determine which backing beans to call the methods for > the viewcontroller? > Does it do all managed beans that implement the interface in the > config file or

Re: [help] questions

2006-07-06 Thread Garner Shawn
How does shale determine which backing beans to call the methods for the viewcontroller? Does it do all managed beans that implement the interface in the config file or does it only do beans used in rendering the view that implement the interface? I'm at a loss as to why forEach won't work. Can

Re: [help] questions

2006-07-06 Thread Garner Shawn
I have posted about shale before but that was before when it was under the struts project still and on the struts mailing list. Back then I was investigating using with JRun 4 for work. Now I'm interested using Tomcat 5.5 for personal interests. Shawn

[help] questions

2006-07-06 Thread Garner Shawn
I want to display a list of products in a loop something like However this is the first page and I don't know how to get the values in the productsBean from the database. However this only needs to be application scope and loaded once when the application is loaded.