Web UI Framework

Field Binding and Expressions

Updated: October 16, 2020

This chapter explains how field bindings are resolved, what is their purpose, and what variables are available for expressions depending on the context.

Field Bindings

The final binding used by the JSF component is built by the layout system at runtime so that it applies to the value you give it in the template defining the nxl:layout tag.

Simple Use Case

You can use this kind of nxl:layout tag in a XHTML template.

<nxl:layout name="myLayoutName" mode="view" value="#{currentDocument}" />

The layout contains a widget mapped to the dc:title field (see the Widget Definitions page):

<widget name="title" type="text">
 <labels>
   <label mode="any">label.dublincore.title</label>
 </labels>
 <translated>true</translated>
 <fields>
   <field>dc:title</field>
 </fields>
 <properties widgetMode="edit">
   <property name="required">true</property>
 </properties>
</widget> 

When the layout service builds the corresponding JSF view (dynamically via facelets), it will build the value expression #{currentDocument.dc.title} (or a similar expression achieving this) and give it to the JSF component that would be usually used for a h:outputText JSF tag.

Using the field property means that you expect the layout system to perform this mapping.

Listing Use Case

Depending on the value given to the nxl:layout tag, the field definition may change. For instance, in a listing, the layout is not usually rendered on the document, but on a PageSelection element, wrapping the  DocumentModel to handle selection information. So a text widget showing the widget title would have the field binding data['dc']['title'] instead of dc:title.

<widget name="title" type="text">
  <labels>
    <label mode="any">Title</label>
  </labels>
  <translated>false</translated>
  <fields>
    <field>data['dc']['title']</field>
  </fields>
</widget>

Using the syntax data.dc.title is also an option as it will produce a valid EL expression. But the data['dc']['title'] syntax makes it possible to correctly handle cases where the schema or field name contains a dash "-" character. The "data" binding is mentioned here because it will resolve the PageSelection#getData method, which resolves to the DocumentModel. Subsequent "dc" and "title" configurations make it resolve the document field named "title" in the "dublincore" schema (defined to use prefix "dc").

Overriding the Layout System Mapping

If you would like to map your widget to another object than the one the layout is applying to, you can use an EL expression in a custom property named value instead. It will override the field mapping generated by the layout system.

Since 5.8, you can even do so in the field definition (which makes it possible to define EL expressions for several fields). This can also be useful to display values resolved dynamically, like providing the difference between two integers kept on your document metadata, for instance #{layoutValue.data.mySchema.myFirstNumber - layoutValue.data.mySchema.mySecondNumber}. Also, remember that if you are displaying such expression while the widget is not in a listing, you cannot use data. The expression will be: #{layoutValue.mySchema.myFirstNumber - layoutValue.mySchema.mySecondNumber}.

EL Expressions in Layouts and Widgets

Variables in Definitions

Some variables are available within layout and widget definitions, and can be referenced in properties, modes and field bindings definitions.

  • layoutValue: represents the value (evaluated) passed in a nxl:layout or nxl:documentLayout tag attribute.
  • layoutMode: represents the mode (evaluated) passed in a nxl:layout or nxl:documentLayout tag attribute.

Variables in Templates

Some variables are made available to the EL context when using layout or widget templates.

  • Inside the layout context, the following global variables are available:

    • layoutValue: represents the value (evaluated) passed in a nxl:layout or nxl:documentLayout tag attribute.
    • layoutMode: represents the mode (evaluated) passed in a nxl:layout or nxl:documentLayout tag attribute.

    • value: represents the current value as manipulated by the tag. In both nxl:layout and nxl:widget tags, it will represent the value resolved from the value tag attribute. This value will work with field information passed in the widget definition to resolve fields and subfields. The variable document is available as an alias of value, although it does not always represent a document model (as layouts can apply to any kind of object).

    • value_n: represents the current value as manipulated by the tag, as above, excepts it includes the widget level (value_0, value_1, etc...). This is useful when needing to use the value as defined in a parent widget, for instance.
  • Inside a layout template, the variable "layout" is available. It make it possible to access the generated layout object. Since Nuxeo 5.8, the layout properties are also exposed for easier resolution of EL expressions: for instance, the variable layoutProperty_title represents the resolved property with name title.

  • Inside a nxl:layoutRow tag, the variables layoutRow and layoutRowIndex are available to access the generated layout row, and its index within the iteration over rows. The equivalent layoutColumn and layoutColumnIndex variables are also available for the nxl:layoutColumn tag.

  • Inside a nxl:layoutRowWidget , or equivalent nxl:layoutColumnWidget tag, the variables widget and widgetIndex are available to access the generated current widget, and its index in the row or column. The variables with level information are also available: widget_0, widget_1, etc. and widgetIndex_0, widgetIndex_1, etc. This is useful when needing to use the widget as defined in a higher level.

  • Inside a widget template, some field_n variables are available: field or field_0 represents the resolved first field value, field_1 the second value, etc. The widget properties are also exposed for easier resolution of EL expressions: for instance, the variable widgetProperty_onchange represents the resolved property with name onchange. The variable fieldOrValue is also available, in case the widget should be bound to the layout value (or parent widget value) when field definitions are empty. Since Nuxeo 5.8, the variable widgetProperties is also available, exposing the complete map of resolved widget properties.

The complete reference is available at http://community.nuxeo.com/api/nuxeo/release-5.8/tlddoc/nxl/tld-summary.html.

There are some inconsistencies between variables exposed in layout/widget definitions and variables exposed in layout/widget templates. You can follow issue NXP-10423 for improvements about this.