How to do h:selectManyCheckbox for each of rows in h:dataTable
I've tried to find out how I can make h:dataTable with one (selectBooleanCheckbox) or more chechboxes (selectManyCheckbox) for each of table row.
my Bean is:
private DataModel userModel =new ListDataModel();
private User user =new User();
publicvoid setUser(User u){
this.user = u;
}
public User getUser(){
return this.userr;
}
public DataModel getUsers(){
return this.userModel;
}
Please, help me.

