http://www.symfony-project.org/forum/index.php?t=msg&goto=24362&#msg_24362
[adapted from http://www.symfony-project.org/forum/index.php?t=msg&goto=23997#msg_23997]
I have a table with a foreign key. The referenced table contains a list of items which are possible to select for a field in the main table. I want to limit the referenced table drop down list in the filter part of list form. So
In my Peer class of the referenced table, I create a method doSelectTypeOne() which returns desired records, as mshramko suggested.
then add to my generator.yml…
list: filters: - FIELDNAME fields: FIELDNAME: { params: peer_method=doSelectTypeOne }
where FIELDNAME is the name of the foreign key field in my table.
However, the drop down list from filter still contains records from the whole referenced table, not the selected one.
What could be wrong?
> What could be wrong?
syntax mistake in generator.yml. Fixed in OP. Works perfectly well after being fixed.
http://www.symfony-project.org/forum/index.php?t=msg&goto=23997#msg_23997
I have a table with a foreign key. The referenced table contains a list of items which are possible to select for a field in the main table. When I add/edit data in the main table (after I created a __toString() method for the referenced table) all records from the referenced table are displayed as a drop down box.
The problem is I [want to limit] the referenced table [drop down list with] only those with field referencedtable.type = 1.
In your Peer class [of the referenced table] you create a method doSelectTypeOne() which returns only objects of type 1, as mshramko suggested.
then add to your generator.yml…
edit: fields: FIELDNAME: { params: peer_method=doSelectTypeOne }
where FIELDNAME is the name of the foreign key field in your table.
documented on: 19 March 2007, flat stanley