[jboss-user] [JBoss Seam] - Re: Problem with SelectOneMenu

2007-12-15 Thread saeediqbal1
I am having a similar issue. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4113135#4113135 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4113135 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Problem with SelectOneMenu

2007-12-15 Thread saeediqbal1
I fixed my issues by implementing public boolean equals(Object obj) and public int hashCode() in the entity bean View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4113143#4113143 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Problem with SelectOneMenu

2007-12-13 Thread hager
public void updateAssignable() | { | System.out.println(updateAssignable ); | this.addAssignable(); | } View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4112495#4112495 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Problem with SelectOneMenu

2007-12-13 Thread [EMAIL PROTECTED]
I don't really understand. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4112518#4112518 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4112518 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Problem with SelectOneMenu

2007-12-13 Thread hager
hi, I have a selectOneMenu and a commandLink. when I click on this commandLink, I call a method which remove the selectItem on the selectOneMenu. After executing this method, in my List (java code), the element is deleted.So, the page is submitted, BUT, in my view, the element still here.

[jboss-user] [JBoss Seam] - Re: Problem with SelectOneMenu

2007-12-13 Thread [EMAIL PROTECTED]
Are you updating the list outjected to the view. Show the code. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4112528#4112528 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4112528

[jboss-user] [JBoss Seam] - Re: Problem with SelectOneMenu

2007-12-13 Thread hager
yes, exactly this is my code : @Out(scope = ScopeType.CONVERSATION) | private ListAssignable availableLines; | | public void addAssignable() { | if(this.assignable != null){ | System.out.println(removed =

[jboss-user] [JBoss Seam] - Re: Problem with SelectOneMenu

2007-12-13 Thread hager
here my Bean.java: package crossTable.action; | | import java.util.ArrayList; | import java.util.Calendar; | import java.util.Date; | import java.util.Iterator; | import java.util.List; | import java.util.Map; | import java.util.TreeMap; | | import javax.ejb.Remove; |

[jboss-user] [JBoss Seam] - Re: problem with selectOneMenu in seam 2.0.0.GA

2007-11-08 Thread damianharvey
Posting your code always helps! Cheers, Damian. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4102858#4102858 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4102858 ___

[jboss-user] [JBoss Seam] - Re: Problem using selectOneMenu in jenerating dynamic select

2007-05-13 Thread monkeyden
In JSF, it is required that the submitted values for select boxes are a subset of the original SelectItems. In other words, if you have values 1,2,3,4,5 displayed in a select box, the submitted values need to be some subset of 1,2,3,4,5, and any value other than these is invalid. You have a

[jboss-user] [JBoss Seam] - Re: Problem using selectOneMenu in jenerating dynamic select

2007-05-13 Thread ask4saif
thank you dear for your help, I have 2 drop down lists: 1. country 2. states In the first list of country i use a factory method retuning selectItems to jsf component. when any country from the list is selected i use seam remoting to tranfer the country to EJBs and get the respective states