-
Notifications
You must be signed in to change notification settings - Fork 4
docs15 Criteria MULTISELECT_CHECKBOX
Christos Pontikis edited this page Jun 20, 2017
·
5 revisions
// define html params
$a_criteria_params_html_task_type = array(
'wrapper_id' => 'criteria_task_type_wrapper',
'wrapper_class' => '',
'fieldset_id' => '',
'fieldset_class' => '',
'legend' => 'Type',
'legend_id' => '',
'legend_class' => '',
'legend_style' => '',
'orientation' => $orientation,
'group_name' => 'criteria_task_type[]',
'group_value' => $criteria_task_type,
'items' => array(
array(
'group_class' => 'checkbox',
'input_class' => '',
'input_id' => 'task_type_appointment',
'input_value' => 1,
'label_class' => $label_class,
'label' => 'Appointment',
'default_checked_status' => true
),
array(
'group_class' => 'checkbox',
'input_class' => '',
'input_id' => 'task_type_task',
'input_value' => 2,
'label_class' => $label_class,
'label' => 'Task',
'default_checked_status' => true
)
),
'msg_all_deselected' => 'Please, select at least one option of filter type'
);