i have a many-to-many relations between 3 tables and all values are
primary keys. the list work but not edit form. how can i activate the
primary keys?
tblUserProject:
tableName: tbl_user_project
columns:
user_id:
type: integer(4)
primary: true
project_id:
type: integer(4)
primary: true
group_id:
type: integer(4)
primary: true
relations:
user:
class: sfGuardUser
local: user_id
foreignAlias: projects
onDelete: cascade
group:
class: sfGuardGroup
local: group_id
foreignAlias: groups
onDelete: cascade
project:
class: tblProject
local: project_id
foreignAlias: users
onDelete: cascade
list:
title: User Project list
filters: [ user, project, group ]
object_actions:
_edit: ~
_delete: ~
edit:
title: Edit %%user%% project rights
display:
"NONE": [ group, project, user ]
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---