JSF problem with selectManyMenu tag

2010-06-22 Thread slayer666
Good morning, i am trying the JSF selectManyMenu tag and i when i execute the aplication renders this trace log: javax.servlet.ServletException javax.faces.webapp.FacesServlet.service(FacesServlet.java:277) causa raĆ­z java.lang.NullPointerException org.apache.catalina.connecto

Re: Interator values not showed

2010-05-19 Thread slayer666
Thanks Alex, but i've solved the problem. This is my Action class: public class IteratorAction extends ActionSupport implements ModelDriven{ private ArrayList groups=new ArrayList(); private ArrayList groups1=new ArrayList(); private Band band=new Band("","");

Re: Interator values not showed

2010-05-19 Thread slayer666
slayer666 wrote: > > Hi, > i'm trying the append tag and the list values of the appended lists are > not showed. > This is the main part of the jsp code: > > > > > > Total Bands: > >Band: > > > > This is m

Interator values not showed

2010-05-18 Thread slayer666
Hi, i'm trying the append tag and the list values of the appended lists are not showed. This is the main part of the jsp code: Total Bands: Band: This is my Action class: package struts2.action; import java.util.ArrayList; import com.opensymphony.xwork2.ActionSupport; pu