Updated to reflect changes:
I am using the following code in my own module to edit a textfield into a specific list of checkboxes:
<?php
function decadeselect_form_alter(&$form, &$form_state, $form_id) {
if ($form_id == "views_exposed_form" && $form['#id'] == "views-exposed-form-exposed-filter-search-page-1") {
if (empty($form_state['view']->exposed_input['field_collection_item_decade_value'])) {
$form_state['input']['field_collection_item_decade_value'] = array();
}
$form['field_collection_item_decade_value']['#type'] = "checkboxes";
$form['field_collection_item_decade_value']['#options'] = array(
'2000s' => t('2000s'),
'1990s' => t('1990s'),
'1980s' => t('1980s'),
'1970s' => t('1970s'),
'1330s' => t('1330s')
);
}
}
?>
(Thanks to dobeerman for pointing out the array format that Views expects from checkboxes!)
This works great when a checkbox is selected. However, when nothing is selected no results are returned from the View. I would like to return all results when there is no selection.
If I change the form type to "select" then everything works exactly as I want to with the field being optional.
What should I do differently?