CRM-18393 - Fix checkboxes to actually work
authorColeman Watts <coleman@civicrm.org>
Tue, 12 Apr 2016 14:38:22 +0000 (10:38 -0400)
committerColeman Watts <coleman@civicrm.org>
Tue, 12 Apr 2016 14:38:22 +0000 (10:38 -0400)
CRM/Custom/Form/Group.php

index 547ca51fbde19eeb518be3b6eaaa56b63f07aa6c..a42fd73f8d85a818e2aa27a4baeaf93e9aa4763a 100644 (file)
@@ -339,16 +339,16 @@ class CRM_Custom_Form_Group extends CRM_Core_Form {
     $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'] );