Let's say I have a Cat class which contains a collection of Kittens. I want to be able to list the Kittens according to a given condition, for example, the principal's role. So far, no problem at all, I resolved this issue with an @Before which adds the corresponding filter to the list view.
But now I want to change the edit page for the Cat, so that when it lists the Kittens (remember, in the edit view I can select the Kittens for the selected Cat), it brings only those available for the principal's role. But the default behavior is to retrieve all the Kittens from the database, and that's not what I want.
Does anyone know how to achieve that?