我有状态下拉列表(drupal 7中的列表),基于该状态表中的所选项目,我也有chekboxes。当我从下拉列表中选择任何状态时,所选州的城市希望被显示为复选框。我的代码是
function signup_form($form, &$form_state) {
$form['rate_the_service']['state'] = array(
'#type' => 'select',
//'#title' => 'State/Province',
'#prefix'=>'<div id="dropdown-third-replace">',
'#suffix'=>'</div>',
'#options'=>$opt,
'#attributes'=>array('selected'=>array('selected')),
'#validated' => TRUE,
'#ajax' => array(
'callback' => 'ajax_example_dependent_dcheck_state_callback',
'wrapper' => 'dropdown-four-replace',
),
);
$form['rate_the_service']['city'] = array(
'#prefix'=>'<div id="dropdown-four-replace">',
'#type' => 'checkboxes',
'#options' => '',
'#default_value' => isset($values['states']) ? $values['states'] : NULL,
'#suffix'=>'</div></div>',
);
}
Ajax调用
function ajax_example_dependent_dcheck_state_callback($form, $form_state) {
$state = $form_state['values']['state'];
$state_query_result2 = db_query('SELECT cityname FROM cities WHERE varstatekey = :varstatekey', array(':varstatekey' => $state));
$state_array = array();
// $state_array[0] = '-- Select State --';
foreach($state_query_result2 as $row2){
$state_array[$row2->cityname] = $row2->cityname;
}
$options[$state] = $state_array;
$form['rate_the_service']['city']['#options'] = $state_array;
//print_r($form['rate_the_service']['city']['#options']);
return $form['rate_the_service']['city'];
}
如何解决此问题。
答案 0 :(得分:1)
在你的ajax函数下,只需返回$form['rate_the_service']['city']
。
然后在状态表单元素之后形成内部,检查是否设置了状态表单字段。如果设置了你的sql查询并在数组中收集城市值。在此之后,您可以编写城市表单元素,并在选项中指定包含城市的数组。不要忘记使用isSet
函数作为状态值,否则在表单加载时,城市数组将为空并给出错误。