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

Reply via email to