$this->add('select', 'style', ts('Display Style'), CRM_Core_SelectValues::customGroupStyle());
// is this set collapsed or expanded ?
- $this->addElement('checkbox', 'collapse_display', ts('Collapse this set on initial display'));
+ $this->addElement('advcheckbox', 'collapse_display', ts('Collapse this set on initial display'));
// is this set collapsed or expanded ? in advanced search
- $this->addElement('checkbox', 'collapse_adv_display', ts('Collapse this set in Advanced Search'));
+ $this->addElement('advcheckbox', 'collapse_adv_display', ts('Collapse this set in Advanced Search'));
// is this set active ?
- $this->addElement('checkbox', 'is_active', ts('Is this Custom Data Set active?'));
+ $this->addElement('advcheckbox', 'is_active', ts('Is this Custom Data Set active?'));
// does this set have multiple record?
- $multiple = $this->addElement('checkbox', 'is_multiple',
+ $multiple = $this->addElement('advcheckbox', 'is_multiple',
ts('Does this Custom Field Set allow multiple records?'), NULL);
// $min_multiple = $this->add('text', 'min_multiple', ts('Minimum number of multiple records'), $attributes['min_multiple'] );