0
我有一個工作選擇列表中獲取數據:使用sfWidgetFormDoctrineChoice從使用sfWidgetFormDoctrineChoice兩個表
$this->widgetSchema['program_choice'] = new sfWidgetFormDoctrineChoice(array(
'label' => 'Program',
'model' => 'Program',
'add_empty' => true,
'method' => 'formatProgramWithSectionTitle',
'order_by' => array('title', 'asc')
), array('class' => 'select_program size-300'));
這返回與模型中的所有程序的選擇列表。
我想擴展它來查詢另一個表,並將這些條目拉入選擇列表。這可以使用sfWidgetFormDoctrineChoice小部件來完成,還是應該切換到sfWidgetFormChoice小部件並在函數中構建我的列表?