Hi,

I'm trying to save my form, but it just stay in the create action
without showing not error.

I have a Main form: Comunication
          a embedded form: Comunication_to

But when i click save button it gets to the create action, and it does
not show any error (in dev) .  Could it be some 'hidden' error from my
embedded form??

SCHEMA:
comunication:
  actAs:             { Timestampable: ~, Signable: ~ }
  columns:
    id:              { type: integer, primary: true, autoincrement:
true }
    user_id:         { type: integer, notnull: true }
    direccion_id:    { type: integer, notnull: true }
    documento:       { type: string(100), notnull: true }
    fecha:           { type: date, notnull: true }
    correlativo:     { type: string(50), notnull: true, unique: true }
    revision:        { type: boolean, default: false }
    status:          { type: boolean, default: true }
    texto:           { type: text, notnull: true }
    notas:           { type: text, notnull: false }
  relations:
    User:
     class:        sfGuardUser
     foreign:      id
     local:        user_id
     type:         one
     onDelete:     restrict
     foreignType:  one
     foreignAlias: User
    Direccion:
     class:        direccion
     foreign:      id
     local:        direccion_id
     type:         one
     onDelete:     restrict
     foreignType:  one
     foreignAlias: Direccion
    Destinatario:
     class:        Comunication_To
     type:         many
     local:        id
     foreign:      comunication_id

comunication_to:
  actAs:           { Timestampable: ~ }
  columns:
    id:              { type: integer, primary: true, autoincrement:
true }
    comunication_id: { type: integer, notnull: true }
    user_profile_id: { type: integer, notnull: true }
  relations:
    Comunication:
     class:          Comunication
     type:           one
     local:          comunication_id
     foreign:        id
    UserProfile:
     class:          sfGuardUserProfile
     type:           one
     local:          user_profile_id
     foreign:        id


THANKS!!!

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

You received this message because you are subscribed to the Google
Groups "symfony users" group.
To post to this group, send email to symfony-users@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