[jboss-user] [JBoss Seam] - Re: selectManyMenu and EntityHome

2007-03-21 Thread ector7280
Not sure what the problem was but, I'm past it. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4030357#4030357 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4030357 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: selectManyMenu and EntityHome

2007-03-19 Thread ector7280
You are correct, and I did use a selectManyMenu, I mistakenly posted the code, containing a selectOneMenu. Nevertheless, the problem is that the tag is having a problem with the states collection referenced by companyHome.instance.states, it appears to want an Array but, seam-gen produced a

[jboss-user] [JBoss Seam] - Re: selectManyMenu and EntityHome

2007-03-19 Thread petemuir
No. It looks like it could be an icefaces problem to me - I've never tried a Set in that situation, but a List is fine (see the ui example) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029333#4029333 Reply to the post :

[jboss-user] [JBoss Seam] - Re: selectManyMenu and EntityHome

2007-03-19 Thread ector7280
I switched to a List and that got me past the Array error, however, it does look like it might be a problem with ICEFaces because now with the List I get this error: 12:49:21,031 ERROR [D2DFaceletViewHandler] Problem in renderResponse: null | java.lang.NullPointerException | at

[jboss-user] [JBoss Seam] - Re: selectManyMenu and EntityHome

2007-03-19 Thread petemuir
Which version of Seam? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029391#4029391 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029391 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: selectManyMenu and EntityHome

2007-03-19 Thread ector7280
Seam 1.2 Patch 1 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029412#4029412 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029412 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: selectManyMenu and EntityHome

2007-03-16 Thread petemuir
Surely you need a select many in this case: h:selectManyListbox value=#{companyHome.instance.states} converter=#{converters.stateConverter} |s:selectItems value=#{stateList.resultList} var=state label=#{state.name} noSelectionLabel=Please Select... hideNoSelectionLabel=true / |