selectManyListbox « RichFaces « JSF Q&A





1. JSF / JBoss Seam how-to: splitting one List over several ListBoxes (h:selectManyListbox)    stackoverflow.com

I'm using these classes:

ShoppingCart   <-ManyToMany->   Item   <-ManyToOne->  ItemCategory
All of them are JPA @Entitys with relevant getters and setters for relations:

Shopping cart:

public class ShoppingCart {
 ...

2. jsf 1.2 add items dynamicaly in selectManyListbox    stackoverflow.com

i am trying to add items to a list using jsf 1.2 , and richfaces 3.3 this is the .jsp

<h:column>
<h:inputText value="#{studentsBean.to}" id="to"></h:inputText>
<rich:suggestionbox for="to" var="stud"  
suggestionAction="#{studentsBean.sugestStudents}" > 
<h:column>
<h:outputText value="#{stud.acadmicNumber}"/>
</h:column>
<h:column>
<h:outputText value="#{stud.fullName}"/>
</h:column>
</rich:suggestionbox>

<a4j:commandButton actionListener="#{studentsBean.addToList}" ...

3. jsf 1.2 Facelets & Richfaces 3.3 - Double clicks on a selectManyListbox    stackoverflow.com

I have one scenario where I have selectManyListbox and on double clicking should call the bean method and load the next page based on the from-outcome value from that method. FYI, ...