You need to sign in to do that
Don't have an account?
Hope E.
Passing values of repeated check boxes from VF page to controller
Hi,
I have couple of questions in my VF page.
A has 3 checkboxes (A,B,C)
B has 3 checkboxes (A,B,C)
I've created a wrapper class with the question's Id, checkbox name and the isSelected Boolean. But it only passes the values of the last Item to controller.
Do you have any idea why it's not working?
Thx in advance!
I have couple of questions in my VF page.
A has 3 checkboxes (A,B,C)
B has 3 checkboxes (A,B,C)
I've created a wrapper class with the question's Id, checkbox name and the isSelected Boolean. But it only passes the values of the last Item to controller.
Do you have any idea why it's not working?
Thx in advance!
All Answers
Use Param and action support to get all values.Please provide your code snippet so that we can identify the exact solution of your code
Thanks
Mukesh Kumar
thx for reply!
it's something like this. first I create a map and fill it with values. the visualforce page result are Ok!
But when I want to save the map, only the last Item in the list contains the correct information.