Hi,
I'm a newhire in symfony,
I created an admin module for my Team Model (team : group)
and I created an admin module for Useraccount model.
when I clic on new in Useraccount admin module I have e form to enter
information, but for TeamID : i have a TextBox field... so i have to
enter manually the id ... normally it should print a comboBox field to
choose the TEam id ...
in the scheama I have This :
.
.
.
team:
_attributes: { phpName: Team }
IDGROUP: { type: DECIMAL, size: '8', scale: '0', primaryKey: true,
required: true }
DESCRIPTION: { type: VARCHAR, size: '1024', required: false }
useraccount:
_attributes: { phpName: Useraccount }
IDUSER: { type: DECIMAL, size: '8', scale: '0', primaryKey: true,
required: true }
IDGROUP: { type: DECIMAL, size: '8', scale: '0', required: true }
NAME: { type: VARCHAR, size: '1024', required: false }
LASTNAME: { type: VARCHAR, size: '1024', required: false }
EMAIL: { type: VARCHAR, size: '1024', required: false }
PASSWORD: { type: VARCHAR, size: '1024', required: false }
LEVEL: { type: DECIMAL, size: '8', scale: '0', required: false }
_indexes: { FK_BELONGUG: [IDGROUP] }
..............
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"symfony users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---