$label = ts('Assigned To');
$group = array('' => ts('- select group -')) + CRM_Core_PseudoConstant::staticGroup(FALSE, 'Access');
- $this->add('select', 'entity_id', $label, $group, TRUE);
+ $this->add('select', 'entity_id', $label, $group, TRUE, array('class' => 'crm-select2 huge'));
$this->add('checkbox', 'is_active', ts('Enabled?'));
}
$groupList[''] = ts('- All Contacts -');
asort($groupList);
- $this->add('select', 'group_id', ts('Select Group'), $groupList);
+ $this->add('select', 'group_id', ts('Select Group'), $groupList, FALSE, array('class' => 'crm-select2 huge'));
$this->addButtons(array(
array(
'type' => 'next',
// add select for groups
$group = array('' => ts('- select group -')) + CRM_Core_PseudoConstant::group();
- $groupElement = $this->add('select', 'group_id', ts('Select Group'), $group);
+ $groupElement = $this->add('select', 'group_id', ts('Select Group'), $group, FALSE, array('class' => 'crm-select2 huge'));
$this->_title = $group[$this->_id];
function buildQuickForm() {
// add select for groups
$group = array('' => ts('- select group -')) + CRM_Core_PseudoConstant::group();
- $groupElement = $this->add('select', 'group_id', ts('Select Group'), $group, TRUE);
+ $groupElement = $this->add('select', 'group_id', ts('Select Group'), $group, TRUE, array('class' => 'crm-select2 huge'));
CRM_Utils_System::setTitle(ts('Remove Contacts from Group'));
$this->addDefaultButtons(ts('Remove from Group'));