Hello,

I have this schema structure
Folder:
  columns:
    id:  { type: integer, primary: true }
    name: { type: string(50), notnull: true }
    folder_id: { type: integer, notnull: true }
  relations:
    Parent: {onDelete: CASCADE, local: folder_id, foreign: id,
foreignAlias: children}

the "symfony doctrine:build-form" commande build the
BaseFolderForm.class.php with two widgets :
1 - the id widget
2 - folder_id a sfWidgetFormDoctrineChoice (select box) containing the
parent

But i need a third one:
3 - folders_list a sfWidgetFormDoctrineChoice (multi select box)
containing all the children

is it possible?

If you have any idea, thanks for your response,

-- 
You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.


Reply via email to