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"/> ... without the help of request.setParameter() i.e. ????? Thankz Dom --------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org