Challenge
Normally, the grid question require a click on the checkbox or radiobutton. Now, we want it to register the answer when the user click on the cell for the answer option.
Example
Solution
- Create a grid question
- Add the below script to that question
Code
quest.onInit = function()
{
$(".grid_subquestion_odd,.grid_subquestion_even").click(
function(evt)
{
if(evt.target.nodeName == "INPUT")
return true;
$(this).children("input").click();
return false;
});
}
Source
Questionnaire Resource Id on cg.catglobe.com site: 164079 (Question: Q10_Make_whole_cell_clickable_in_single_and_multi_)