Package org.grails.scaffolding.registry
Interface DomainInputRenderer
-
- All Superinterfaces:
DomainRenderer
public interface DomainInputRenderer extends DomainRenderer
Used to render a single domain class property on a form
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description groovy.lang.ClosurerenderInput(java.util.Map defaultAttributes, DomainProperty property)Defines how a given domain class property will be rendered in the context of a form-
Methods inherited from interface org.grails.scaffolding.registry.DomainRenderer
supports
-
-
-
-
Method Detail
-
renderInput
groovy.lang.Closure renderInput(java.util.Map defaultAttributes, DomainProperty property)Defines how a given domain class property will be rendered in the context of a form- Parameters:
defaultAttributes- The default html element attributesproperty- The domain property to be rendered- Returns:
- The closure to be passed to an instance of
MarkupBuilder
-
-