Posted by mlcc2000 on March 4, 2012 at 11:23pm
1 follower
Jump to:
| Project: | Signup |
| Version: | 6.x-1.0 |
| Component: | Views integration |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
Have setup Additional Fields in the signup_form.inc and all works with the Signup Form. However, I cannot see the content of the field in the signup_user_vbo_admin_list view.
One additional field in the signup_form.inc:
...
$days_options = array(
'Working Saturday' => t('Saturday'),
'Working Sunday' => t('Sunday'),
);
}
$form['signup_form_data']['dayswork']= array(
'#type' => 'checkboxes',
'#title' => t('What days can you work'),
'#options' => $days_options,
'#description' => t('Please select the days with you can work. If not working a full day, please indicate the day and time on the Additional Information line.'),
);
....Produces in the view:
Name: blahbla
AdditionalInformation:
dayswork: Array
How can I see what is in the dayswork and not 'Array'?
Thanks.
mlcc2000
Comments
#1
Any ideas??