I am creating a JSF app in which I am getting a list of users from a DB in a DataTable. I am showing
selectBooleanCheckbox` in front of the user, and I want to implement a bulk delete option so the user can select multiple users and press the delete button. If it is PHP I can do that easily, but right now I dont know what to do.
Do I need to create a selectBooleanCheckbox
in bean as well and bind it? I am looking forward for a best approach. BalusC's approach for CRUD is not applicable here as he is using custom DAO stuff.