Hy every body,
I have a problem with filters in my admin generator.
My schema :
Product:
actAs:
Timestampable: ~
I18n:
fields: [descriptif, is_active]
columns:
id:
type: integer(8)
primary: true
autoincrement: true
[... etc ]
Racket:
inheritance:
extends: Product
type: concrete
columns:
columns: [... etc ]
String:
inheritance:
extends: Product
type: concrete
columns: [... etc ]
In the admin generator of each module Racket, String I wanted to use
the ProductFormFilter class so I wrote that in the generator.yml
file :
filter:
class: ProductFormFilter
The problem is that instead using Racket or String model, it use the
Product's one so it returns every Product instead of Racket or
Strings ...
Any idea ? Is it a symfony bug ?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---