This week's book giveaway is in the Design and Architecture forum.
We're giving away four copies of Communication Patterns: A Guide for Developers and Architects and have Jacqui Read on-line!
See this thread for details.
  • Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

selectManyListBox to add/remove user Roles

 
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
selectManyListBox to add/remove user Roles

I am using JSF (MyFaces 1.1.1) component h:selectManyListBox along with Ajax4Jsf to add/remove user Roles.


I have created page called page.jsp as follows (need help in filling the code):

. . . .

<h:panelGrid columns="4" style="">
<h:outputText value="User Roles" />
<h:selectManyListbox id="userRoles" value="#{test.selectedRoles}">
<f:selectItems value="#{test.allAvailableRoles}" />
</h:selectManyListbox>

<h:commandButton value="Add"></h:commandButton>
<h:commandButton value="Remove"></h:commandButton>

<h:outputLabel value="Device Roles" />
<h:selectManyListbox>

</h:selectManyListbox>
</h:panelGrid>
</ajax:outputPanel>
. . . .


It uses managed bean called TestBean.java

public class TestBean {
private List<SelectItem> allAvailableRoles;
String[] selectedRoles;
public List getAllAvailableRoles(){
logger.info(" *** In getAllAvailableRoles Backing Bean*** ");
System.out.println(" *** In getAllAvailableRoles Backing Bean*** ");
allAvailableRoles = new ArrayList<SelectItem>();
List<Role> allRoles = new ArrayList<Role>();
allRoles = ( List ) deviceManager.getUserRoles(); //call to business layer to retrieve user roles from database
//System.out.println("Role Size"+allRoles.size());
//Iterate All Roles to create a SelectItem and add it to the list that will fill theSelectManyListbox
for ( Role role : allRoles ){

SelectItem item = new SelectItem();
item.setValue( ""+role.getId() );
item.setLabel( role.getName() );

allAvailableRoles.add( item );
}
selectedRoles = (String[])selectedRoles.toArray();
return allAvailableRoles;

}


public String[] getSelectedRoles() {
return selectedRoles;
}


public void setSelectedRoles(String[] selectedRoles) {
this.selectedRoles = selectedRoles;
}
}

I need help with the following:
1) The Layout of JSP page has to render
User Roles (h:selectManyListBox), Add and Remove Buttons, Device Roles (h:selectManyListBox) in a single colums. I am using <h:PanelGrid columns=4> . But i wanna Remove button to display in next row of Add button

2) I am looking for sample code for adding functionality to Add/Remove Buttons.

The Add button adds the selected user roles to Device Roles whereas Remove button removes the selected user roles from Device Roles to User Roles

Thanks for your time in advance

Regards
Bansi
 
Straws are for suckers. Now suck on this tiny ad!
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic