コントローラー
[php]
$users = $this->Child->User->find(‘list’,array(
‘fields’=>array(‘username’), ////取りたいフィールド名の配列
));
$this->set(compact(‘users’));
[/php]
add or edit
[php]
echo $this->BootstrapForm->input(‘user_id’, array(‘label’ => ‘ユーザー名’,’options’=>$users)); //optionsで指定する
[/php]