grails:
plugin:
fields:
wrapper: field
displayWrapper: display
widget: input
displayWidget: displayWidget
4 Customizing Field Rendering
Version: 6.3.0
4 Customizing Field Rendering
Customizing Field Rendering
The plugin resolves the GSP template used for each property according to conventions. You can override the rendering based
on the class and property name or the property type. The f:field tag looks for a template called _wrapper.gsp, the f:widget
tag looks for a template called _widget.gsp, the f:display tag looks for a template called _displayWrapper.gsp.
| Breaking changes in version 1.5 |
In version 1.5 a new template was introduced _displayWidget.gsp. This is the corollary of _widget.gsp for fields that
are read-only, i.e. it is responsible for rendering just the markup for the field itself. Furthermore, the default names
of all the templates were changed in this version, in the interest of clarity and consistency. The changes to the template
names are summarized below:
| Old Template Name (before v.1.5) | New Template Name (v.1.5 onwards) |
|---|---|
|
|
|
|
N/A |
|
Users upgrading to 1.5 from a previous version should either rename their templates (recommended) or add the following
to app/conf/application.yml to change the default templates names to the old names
Locating Field Templates by Convention
The template for a field is chosen by a convention using the names of the controller, action, bean class, bean property, theme, etc. All the tags will look for templates in the following directories in decreasing order of preference:
-
app/views/controllerNamespace/controllerName/actionName/propertyName/_themes/themeName/ -
app/views/controllerNamespace/controllerName/actionName/_themes/themeName/propertyType/ -
app/views/controllerNamespace/controllerName/actionName/_themes/themeName/ -
app/views/controllerNamespace/controllerName/propertyName/_themes/themeName/ -
app/views/controllerNamespace/controllerName/_themes/themeName/propertyType/ -
app/views/controllerNamespace/controllerName/_themes/themeName/ -
app/views/controllerName/actionName/propertyName/_themes/themeName/ -
app/views/controllerName/actionName/_themes/themeName/propertyType/ -
app/views/controllerName/actionName/_themes/themeName/ -
app/views/controllerName/propertyName/_themes/themeName/ -
app/views/controllerName/_themes/themeName/propertyType/ -
app/views/controllerName/_themes/themeName/ -
app/views/_fields/_themes/themeName/class/propertyName/ -
app/views/_fields/_themes/themeName/superclass/propertyName/ -
app/views/_fields/_themes/themeName/associationType/ -
app/views/_fields/_themes/themeName/propertyType/ -
app/views/_fields/_themes/themeName/propertySuperclass/ -
app/views/_fields/_themes/themeName/default/ -
app/views/controllerNamespace/controllerName/actionName/propertyName/ -
app/views/controllerNamespace/controllerName/actionName/propertyType/ -
app/views/controllerNamespace/controllerName/actionName/ -
app/views/controllerNamespace/controllerName/propertyName/ -
app/views/controllerNamespace/controllerName/propertyType/ -
app/views/controllerNamespace/controllerName/ -
app/views/controllerName/actionName/propertyName/ -
app/views/controllerName/actionName/propertyType/ -
app/views/controllerName/actionName/ -
app/views/controllerName/propertyName/ -
app/views/controllerName/propertyType/ -
app/views/controllerName/ -
app/views/_fields/class/propertyName/ -
app/views/_fields/superclass/propertyName/ -
app/views/_fields/associationType/ -
app/views/_fields/propertyType/ -
app/views/_fields/propertySuperclass/ -
app/views/_fields/default/
The variables referenced in these paths are:
| Name | Description |
|---|---|
controllerName |
The name of the current controller (if any). |
actionName |
The name of the current action (if any). |
themeName |
Theme name specified as value of theme attribute (Optional). |
class |
The bean class. For simple properties this is the class of the object passed to the |
superclass |
Any superclass or interface of |
propertyName |
The property name at the end of the chain passed to the |
propertyType |
The type of the property at the end of the chain passed to the |
propertySuperclass |
Any superclass or interface of |
associationType |
One of |
All class names are camel-cased simple forms. For example java.lang.String becomes string, and com.project.HomeAddress becomes homeAddress.
Templates are resolved in this order so that you can override in the more specific circumstance and fall back to successively more general defaults. For example, you can define a field template for all java.lang.String properties but override a specific property of a particular class to use more specialized rendering.
Templates in plugins are resolved as well. This means plugins such as Joda Time can provide default rendering for special property types. A template in your application will take precedence over a template in a plugin at the same 'level'. For example if a plugin provides a app/views/_fields/string/_widget.gsp the same template in your application will override it but if the plugin provides app/views/_fields/person/name/_widget.gsp it would be used in preference to the more general template in your application.
For most properties the out-of-the-box defaults should provide a good starting point.
Locating Templates Conventionally Example
Imagine an object of class Employee that extends the class Person and has a String name property.
You can override the template f:field uses with any of these:
-
app/views/controllerName/actionName/name/_themes/themeName/_wrapper.gsp -
app/views/controllerName/actionName/name/_wrapper.gsp -
app/views/controllerName/actionName/string/_wrapper.gsp -
app/views/controllerName/actionName/_wrapper.gsp -
app/views/controllerName/name/_wrapper.gsp -
app/views/controllerName/string/_wrapper.gsp -
app/views/controllerName/_wrapper.gsp -
app/views/_fields/employee/name/_wrapper.gsp -
app/views/_fields/person/name/_wrapper.gsp -
app/views/_fields/string/_wrapper.gsp -
app/views/_fields/default/_wrapper.gsp
override the template f:widget uses with any of these:
-
app/views/controllerName/actionName/name/_themes/themeName/_widget.gsp -
app/views/controllerName/actionName/name/_widget.gsp -
app/views/controllerName/actionName/string/_widget.gsp -
app/views/controllerName/actionName/_widget.gsp -
app/views/controllerName/name/_widget.gsp -
app/views/controllerName/string/_widget.gsp -
app/views/controllerName/_widget.gsp -
app/views/_fields/employee/name/_widget.gsp -
app/views/_fields/person/name/_widget.gsp -
app/views/_fields/string/_widget.gsp -
app/views/_fields/default/_widget.gsp
And override the template f:display uses with any of these:
-
app/views/controllerName/actionName/name/_themes/themeName/_displayWrapper.gsp -
app/views/controllerName/actionName/name/_displayWrapper.gsp -
app/views/controllerName/actionName/string/_displayWrapper.gsp -
app/views/controllerName/actionName/_displayWrapper.gsp -
app/views/controllerName/name/_displayWrapper.gsp -
app/views/controllerName/string/_displayWrapper.gsp -
app/views/controllerName/_displayWrapper.gsp -
app/views/_fields/employee/name/_displayWrapper.gsp -
app/views/_fields/person/name/_displayWrapper.gsp -
app/views/_fields/string/_displayWrapper.gsp -
app/views/_fields/default/_displayWrapper.gsp
During template development it is usually recommended to disable template caching in order to allow the plugin to recognize new/renamed/moved templates without restarting the application. See the "Performance" section of the guide for the exact settings.
See Template Seach Path
The plugin logs which locations it is checking for templates as debug log. You can enable this by defining a logger in logback.groovy
logger('grails.plugin.formfields.FormFieldsTemplateService', DEBUG,['STDOUT'])
The can disable the caching in application.yml using:
grails:
plugin:
fields:
disableLookupCache: true
Default Behaviour - Using Grace Widget Tags
If no template override is found the plugin will use the standard grails input tags (e.g. g:select, g:checkbox, g:field) for rendering input controls.
Using f:field you can pass extra arguments (e.g. optionKey, optionValue) through to these tags by prefixing them with widget-, e.g.
<f:field bean="person" property="gender" widget-optionValue="name"/>
Template parameters
The f:field and f:widget tags will pass the following parameters to your templates or to the body of f:field if you use one:
| Name | Type | Description |
|---|---|---|
bean |
Object |
The |
property |
String |
The |
type |
Class |
The property type. |
label |
String |
The field label text. This is based on the |
value |
Object |
the property value. This can also be overridden or defaulted if the |
constraints |
ConstrainedProperty |
The constraints for the property if the bean is a domain or command object. |
persistentProperty |
The persistent property object if the bean is a domain object. |
|
errors |
List<String> |
The error messages for any field errors present on the property. If there are no errors this will be an empty List. |
required |
boolean |
|
invalid |
boolean |
|
prefix |
String |
A string (including the trailing period) that should be appended before the input name such as |
In addition f:field passes the following parameters:
Name |
Type |
Description |
widget |
String |
The output of |
If the bean attribute was not supplied to f:field then bean, type, value and persistentProperty will all be null.
|
Field labels
If the label attribute is not supplied to the f:field tag then the label string passed to the field template is resolved by convention. The plugin uses the following order of preference for the label:
-
An i18n message using the key 'beanClass.path`.label’. For example when using
<f:field bean="personInstance" property="address.city"/>the plugin will try the i18n keyperson.address.city.label. If the property path contains any index it is removed so<f:field bean="authorInstance" property="books[0].title"/>would use the keyauthor.books.title.label. -
An i18n message using the key 'objectType.propertyName`.label’. For example when using
<f:field bean="personInstance" property="address.city"/>the plugin will try the i18n keyaddress.city.label. -
The natural property name. For example when using
<f:field bean="personInstance" property="dateOfBirth"/>the plugin will use the label"Date Of Birth".
Locating Field Templates Directly
Rather than relying on the convention described previously to locate the template(s) to be used for a particular field, it is instead possible to directly specify the directory containing the templates. This feature was introduced in version 1.5.
-
The
wrapperattribute can be used with the f:field or f:display tags to specify the directory containing the_wrapper.gspor_displayWrapper.gsptemplate to be used -
The
widgetattribute can be used with the f:field or f:display tags to specify the directory containing the_widget.gspor_displayWidget.gsptemplate to be used -
If the wrapper and widget templates both have the same value, the
templatesattribute can be used instead as a shorthand. For example:
<f:field property="startDate" templates="bootstrap3" />
is equivalent to:
<f:field property="startDate" wrapper="bootstrap3" widget="bootstrap3" />
if theme is specified, theme will be searched first to find the templates For example
<f:field property="startDate" templates="custom" theme="bs-horizontal"/>
Will search the templates first in \_fields/_themes/bs-horizontal/custom and then \_fields/custom
If a direct location is specified, and the templates cannot be found therein, the plugin will fall back to locating templates by convention.
Locating Templates Directly Example
// renders _fields/\_themes/bs-horizontal/custom/_wrapper.gsp:
<f:field property="startDate" wrapper="custom" theme="bs-horizontal"/>
// renders _fields/bootstrap3/_wrapper.gsp:
<f:field property="startDate" wrapper="bootstrap3"/>
// renders _fields/time/_widget.gsp:
<f:field property="startDate" widget="time"/>
// renders _fields/time/_wrapper.gsp and _fields/time/_widget.gsp:
<f:field property="startDate" templates="time"/>
// renders _fields/\_themes/bs-horizontal/custom/_displayWrapper.gsp:
<f:display property="startDate" wrapper="custom" theme="bs-horizontal"/>
// renders _fields/bootstrap3/_displayWrapper.gsp:
<f:display property="startDate" wrapper="bootstrap3"/>
// renders _fields/time/_displayWidget.gsp:
<f:display property="startDate" widget="time"/>
// renders _fields/time/_displayWrapper.gsp and _fields/time/_displayWidget.gsp:
<f:display property="startDate" templates="time"/>