Re: HABTM and form->input

2008-10-15 Thread Yodiaditya
Sorry, I don't understand what you mean Todd. Are you want to editing name in multiple select form? i guess you want make editing form Hope this help you a little bit : in admin edit view echo $form->input('Division.Division'); in function admin_edit() in Manufactures_controller $this->set(

Re: HABTM and form->input

2008-10-15 Thread ORCC
Load the values in the controller by using find with 'list' parameter In the controller: $division = $this->Division->find('list', Array('fields' => Array('id', 'name'))); $this->set('division_list',$division); In the view //the 'options' parameters set the list options for the select control e