The following does not work:
<nuxeo-data-table role="widget" items="{{document.properties.toto:contact}}" orderable="true" editable="true"> <nuxeo-data-table-column name="Name"> <template> <div role="widget">[[item.name]]</div> </template> </nuxeo-data-table-column> <nuxeo-data-table-column name="Role"> <template> <nuxeo-directory-suggestion role="widget" value="[[item.role]]" label="Role" readonly="true" directory-name="country"></nuxeo-directory-suggestion> </template> </nuxeo-data-table-column> <nuxeo-data-table-column name="Position"> <template> <div role="widget">[[item.position]]</div> </template> </nuxeo-data-table-column> <nuxeo-data-table-form> <template> <nuxeo-input value="{{item.name}}" label="[[i18n('fox.name')]]" type="text"></nuxeo-input> <nuxeo-directory-suggestion value="{{item.role}}" label="[[i18n('fox.role')]]" directory-name="country"></nuxeo-directory-suggestion> <nuxeo-input value="{{item.position}}" label="[[i18n('fox.position')]]" type="text"></nuxeo-input> </template> </nuxeo-data-table-form> </nuxeo-data-table>
The labels are blank (see screenshots).