'How to configure the Fields plugin to filter the domain

I have an Author who has a Book.

class Author {
   String name
   Book book
}

The <f:all bean="Author"/> tag in the edit.gsp will create a html textbox with the Author.name and a html dropdown box with all the books in the html element.

How to setup the Fields plugin to only show just a sub-set of the books (not all the books)?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source