ドロップダウンまたはラジオから選択した値を以下のフォームに自動的に取得する方法はありますか? 下の画像の例では、ラジオ ボタン「randy」を選択すると、「randy」という値が自動的に下のフォームに入力されます。
$header1 = array('Name'); // Prepare table header
$query = db_select("homo", "r"); // Select table
$query->fields("r", array("nama")); // Select fields
$result = $query->execute(); // Execute query
$rows = array();
while($data = $result->fetchObject()){ // Looping for filling the table rows
$rows[] = array( // Fill the table rows
$data->nama,
);
}
$form['table'] = array (
'#type' => 'tableselect',
'#header' => $header1,
'#options' => $rows,
'#multiple' => FALSE,
);
$form['f1'] = array(
'#title' => t('Detail Anggota'),
'#type' => 'fieldset',
);
$form['f1']['namaa'] = array(
'#title' => t('Nama'),
'#type' => 'textfield',
'#required' => TRUE,
);