[jboss-user] [JBoss Seam] - Re: SelectOne

2007-04-18 Thread KoniKoni
h:outputText value=#{kfz.hersteller.bezeichnung} / The output here is correct, but in follow code, the value does not set: h:selectOneMenu id=hrs value=#{kfz.hersteller} required=true converter=#{bearbkfz.herconverter} | s:selectItems

[jboss-user] [JBoss Seam] - Re: selectOne

2007-03-26 Thread petemuir
KoniKoni, take a look at the ui example in CVS, it shows the country selectOneRddio being populated from a property of continent. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031528#4031528 Reply to the post :

[jboss-user] [JBoss Seam] - Re: selectOne

2007-03-26 Thread KoniKoni
This stuff just functions with EnityHome. Shoud be the EntityBean for selectOne from EtityHome extended? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031529#4031529 Reply to the post :

[jboss-user] [JBoss Seam] - Re: selectOne

2007-03-26 Thread petemuir
No, you never extend an entity from EntityHome. EntityHome is part of the Seam Application Framework (see the documentation. I wrote the example using the framework but it works just fine without it (all the framework is doing is making it easier to do persistence - update and queries).

[jboss-user] [JBoss Seam] - Re: selectOne

2007-03-26 Thread KoniKoni
I used follow code: framework:entity-home name=kfzHome entity-class=kk.rentform.entity.Kfz / without extending from HomeEntity doesn't work. Probably because i used s:convertEntity /? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031553#4031553 Reply

[jboss-user] [JBoss Seam] - Re: selectOne

2007-03-26 Thread KoniKoni
If i defined follow: framework:entity-home name=kfzHome entity-class=kk.rentform.entity.Kfz / how can i include this entity home with @In annotation? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031558#4031558 Reply to the post :

[jboss-user] [JBoss Seam] - Re: selectOne

2007-03-26 Thread petemuir
@In EntityHome kfzHome Nothing in seam-ui is dependant on the framework. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031638#4031638 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4031638

[jboss-user] [JBoss Seam] - Re: selectOne

2007-03-25 Thread cdigiovanni
hello, i have the same problem. If you got a solution to the problem can you post it? Thank you! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031433#4031433 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4031433

[jboss-user] [JBoss Seam] - Re: selectOne

2007-03-24 Thread stu2
KoniKoni wrote : I don's now what i do wrong: | | | | a4j:region | | s:div id=frm | | a4j:form | | | | h:selectOneMenu value=#{hersteller} required=true | |

[jboss-user] [JBoss Seam] - Re: selectOne

2007-03-24 Thread KoniKoni
if declared the List in componets.xml does work, but i have to select the second selectOne by parameter form the first selectOne and the ui example don't provide such, or i don't understand it? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4031307#4031307

[jboss-user] [JBoss Seam] - Re: selectOne

2007-03-24 Thread KoniKoni
I want to make follow: User choise from a selectOneMenu a category and the select selectOneMenu shows the films of selected category, how can i make that, the ui example provide just declarations from conponents.xml? View the original post :