2013-01-22 56 views
1
echo $form->input(
    'country_id', 
    array(
     'type' => 'select', 
     'label' => __('Country *', true), 
     'empty' => 'Select' , 
     'order' => array('countries.name ASC') 
    ) 
); 

國家列表未顯示在升序中。請有人幫我找出一個錯誤或好的方法來顯示國家列表的升序。在Cakephp中以降序排列的Dropbdown列表

回答

4

您需要添加orderfind查詢:

$countries = $this->Country->find('list', array(
    'fields' => array('Country.id', 'Country.name'), 
    'order' => array('Country.name' => 'ASC') 
))