Re: Struts 2 Freemarker Templates

2007-10-08 Thread Jason Deffenbaugh
Thanks that helped/worked. I got it working using <#if (itemCount == parameters.stop)> to access the custom parameters. -Jason On Mon, 2007-10-08 at 19:47 +0200, Sami Dalouche wrote: > Hi, > > you should be able to access your start and stop variables using : > > ${parameters.start} and $

Re: Struts 2 Freemarker Templates

2007-10-08 Thread Sami Dalouche
Hi, you should be able to access your start and stop variables using : ${parameters.start} and ${parameters.stop} expressions in your FTL template. Regards, Sami Dalouche Le lundi 08 octobre 2007 à 12:59 -0400, Jason Deffenbaugh a écrit : > I'm trying to make a custom template for the checkboxl

Struts 2 Freemarker Templates

2007-10-08 Thread Jason Deffenbaugh
I'm trying to make a custom template for the checkboxlist struts tag to only write out the html for the checkboxes in the list between two parameter values I send to the template. I want to pass parameters from the jsp file into the freemarker template but I'm not sure how to do it. So, I'm thi