Custom tag?  Is this a custom JSP tag?

On Thu, Feb 5, 2009 at 2:21 AM, Dominik Fischer <fische...@idowa.de> wrote:
> Hello folks,
>
> how can i access a property (i.e. data) of a class like....
>
> public class BabyAction extends ActionSupport implements RequestAware {
>        private List data;
>
>        public List getData() {
>                return this.data;
>        }
>
>        public void setSearch(List data) {
>                this.data = data;
>        }
>
>        ...
>
> }
>
> ... in a custom tag like ...
>        <i:divTable list="data"/>
> ?????
>
> I have tried it with request.getAttribute() or session.getAttribute, but
> nothing worked.
>
>
> Thank you
> Dom
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
> For additional commands, e-mail: user-h...@struts.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org

Reply via email to