Package org.grails.scaffolding.registry
Interface DomainOutputRenderer
- All Superinterfaces:
DomainRenderer
Used to render markup that represents how single domain class property will be displayed
-
Method Summary
Modifier and TypeMethodDescriptiongroovy.lang.ClosurerenderListOutput(DomainProperty property) Defines how a given domain class property will be rendered in the context of a list of domains class instancesgroovy.lang.ClosurerenderOutput(DomainProperty property) Defines how a given domain class property will be rendered in the context of a single domain class instanceMethods inherited from interface org.grails.scaffolding.registry.DomainRenderer
supports
-
Method Details
-
renderListOutput
Defines how a given domain class property will be rendered in the context of a list of domains class instances- Parameters:
property- The domain property to be rendered- Returns:
- The closure to be passed to an instance of
MarkupBuilder
-
renderOutput
Defines how a given domain class property will be rendered in the context of a single domain class instance- Parameters:
property- The domain property to be rendered- Returns:
- The closure to be passed to an instance of
MarkupBuilder
-