In the MyFormUser.php I have included this:
protected function bindParamsToInputs()
{
return array(
"bus_comp"=>"survey_buc_comps",
"project"=>"survey_project",
"activity"=>"survey_activity",
);
}
in the MyFormUser.view.php at the bottom I have included this:
<div class="form-group" style="margin-top:30px;">
<button class="btn btn-lg btn-primary">Submit form</button>
</div>
The form seems to be be generated OK. How can i see what choices the user has chosen on the form? (ie where does the submit go to?)