선택 옵션 항목을 형성하는 클래스 추가


19

JS없이 양식 옵션 태그에 클래스를 추가하려면 어떻게해야합니까? Form API에서 현재 이와 같은 키 배열을 전달할 수 있습니다.

array(
  '0' => 'option 0',
  '1' => 'option 1',
)

그리고 나는 이런 식으로 HTML을 얻을 것이다

<option value="0">option 0</option>
<option value="1">option 1</option>

이런 식으로 할 수있는 방법이 있습니까?

array(
  array(
    'value' => 0,
    'text' => 'option 0',
    'class' => 'bob 0',
  ),
  array(
    'value' => 1,
    'text' => 'option 1',
    'class' => 'bob 1',
  ),
)

그리고 이것을 얻으십시오

<option value="0" class="bob 0">option 0</option>
<option value="1" class="bob 1">option 1</option>

나는이 질문을 좋아한다. 의를 주제로 찬성했습니다.
레스터 피바디

이것은 여전히 ​​drupal 7의 문제입니까?

답변:


8

불행히도 현재 Form API를 사용하는 것은 쉽지 않습니다.

이론적으로 다음과 같은 작업을 수행 할 수있는이 기능을 추가 하는 문제 가 있습니다 (2008 년으로 거슬러 올라갑니다).

$form['optiontest'] = array(
  '#type' => 'select',
  '#title' => t('Option test'),
  '#options' => array(
    array(
      '#return_value' => 0,
      '#value' => t('First option'),
      '#attributes' => array('class' => 'first', 'title' => t('First option')),
    ),
    array(
      '#value' => t('Option group'),
      '#attributes' => array('class' => 'group', 'title' => t('This is an optgroup')),
      '#options' => array(
        array('#return_value' => 2, '#value' => t('1st sub-option')),
        array('#return_value' => 4, '#value' => t('2nd sub-option')),
      ),
    ),
  ),
);

그러나 불행히도 현재 문제에 첨부 된 실패한 패치는 없습니다.

내가 지금 생각할 수있는 유일한 방법 #process은 select 요소에 함수를 추가하고 클래스가 개별적으로 분류 될 때 각 옵션에 클래스를 추가하는 것입니다.


5

완전히 유연한 옵션을 얻을 수 없었지만 options옵션 값을 기반으로 태그 에 클래스를 추가하는 방법이 있습니다 . 그것은 작동하지만 theme_select내 자신의 버전을 사용 하는 기능을 재정의합니다.form_select_options

// theme_select
function THEME_select($variables) {
  $element = $variables['element'];
  element_set_attributes($element, array('id', 'name', 'size'));
  _form_set_class($element, array('form-select'));
  return '<select' . drupal_attributes($element['#attributes']) . '>' . THEME_form_select_options($element) . '</select>';
}

/**
 *
 * @param type $element
 * @param type $choices
 * @return string 
 */
function THEME_form_select_options($element, $choices = NULL) {
  if (!isset($choices)) {
    $choices = $element['#options'];
  }
  // array_key_exists() accommodates the rare event where $element['#value'] is NULL.
  // isset() fails in this situation.
  $value_valid = isset($element['#value']) || array_key_exists('#value', $element);
  $value_is_array = $value_valid && is_array($element['#value']);
  $options = '';
  foreach ($choices as $key => $choice) {
    if (is_array($choice)) {
      $options .= '<optgroup label="' . $key . '">';
      $options .= THEME_form_select_options($element, $choice);
      $options .= '</optgroup>';
    }
    elseif (is_object($choice)) {
      $options .= THEME_form_select_options($element, $choice->option);
    }
    else {
      $key = (string) $key;
      if ($value_valid && (!$value_is_array && (string) $element['#value'] === $key || ($value_is_array && in_array($key, $element['#value'])))) {
        $selected = ' selected="selected"';
      }
      else {
        $selected = '';
      }
      $options .= '<option class="' . drupal_clean_css_identifier($key) . '"  value="' . check_plain($key) . '"' . $selected . '>' . check_plain($choice) . '</option>';
    }
  }
  return $options;
}

0

실제로 개별 option항목 을 재정의하는 방법이 있습니다 . 그러나 Drupal 7에서 작동하는지 확실하지 않습니다.

Drupal 8에서 작동하는 코드는 다음과 같습니다.

$form['select'] = [
  '#type' => 'select',
  '#title' => t('Select'),
  '#options' => [
    '0' => t('Bob 0'),
    '1' => t('Bob 1'),
  ],
  // You define attributes for individual options as follows.
  '0' => [
    // I have tried 'disabled' = TRUE and it works.
    'disabled' => TRUE,
    // I have never tried #attributes, but I think it should work.
    '#attributes' => [
      'class' => ['bob-0'],
    ],
  ]
]

도움이 되길 바랍니다. 건배! 또는 다른 솔루션 중 하나를 선택하십시오.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.