Dropdown select list in CakePHP

前端 未结 10 1001
一个人的身影
一个人的身影 2020-12-15 11:59

Does anybody know how to select the contents of one take from a different view in CakePHP?

I have a take itemgroups that has 2 fields ID an

10条回答
  •  没有蜡笔的小新
    2020-12-15 12:45

    In controller:

    $Itemgroup = $this->Itemgroup->find('list',
      array(
        'fields' => array('ID','Description')
      )
    );
    
    $this->set('Itemgroup',$Itemgroup); 
    

    In View:

    $form->input('itemgroup_id', array('type' => 'select','options'=> $Itemgroup));
    

提交回复
热议问题