2010-11-21 83 views

回答

2

嘛,只是如果你不希望它不添加它。基本上選擇框都充滿了一個數組是這樣的:

$options = array(1=>'Text 1', 2=>'Text 2', ...); 

有OPTGROUP需要像二維數組:

$options = array(
    'Opt Group 1'=>array(
     1=>'Text1', 
     2=>'Text2', 
     ... 
    ), 
    'Opt group 2'=>array(
     1=>'Text1', 
     2=>'Text2', 
     ... 
    ) 
); 

最有可能在你的控制器,而不是:

$this->set('options', $this->YourModel->find('list')); 

你正在使用

$this->set('options', $this->YourModel->find('all')); 

注意find函數中的參數。看看that article for Options parameter