I have a survey page with diffrent type of questions singlechoise, multiplechoise. The questions are built with radiobuttons and checkboxes.
When I save my data I loop thru my FormCollection in the controller.
The name of the item of the formcollection is my question, the first part of the value is the selected alternative.
Singlechoise questions are no problem, because I can get the value of the selected object by:
foreach (var item in collection)
{
string str = item.ToString();
var value = collection[str];
int selectedAlternativeId = value.Split('.').First();
//Saving...
}
Before I had unique names of all my question alternatives wich worked fine because I could get the value of the checkboxes, but then I wanted to add some validation to the checkboxes wich ment I had to name all the checkbox-alternatives to the same name.
example:
<input type="checkbox" name="1030" value="1500.Some other data" required="true, min=1,max=2">
<input type="checkbox" name="1030" value="1501.Some other data">
<input type="checkbox" name="1030" value="1502.Some other data">
<input type="checkbox" name="1030" value="1503.Some other data">
That causes a problem, when I loop thru the formcollection my value will be: (if i select alternative 1501,1502)
"false,true,false,true,false,false"
and my string name will be "1030"
Note. The users that answers the survey can repeat questions, => I have no idea how many questions the user have answered. Thats why I have to loop through the formcollection.
Is there a way to separate the selected value? Or is there a way to validate checkboxes by id or classes?
Right now im using the JqueryValidationPlugin: http://jquery.bassistance.de/validate/demo/
Please help me out!