Configuring the Object Display

enaio® appconnector 11.10 »

The app can be used to create new objects at a location in enaio®. Users can select, by default, from all object types to which they also have access in enaio® client. Also by default, the index data forms only contain the mandatory fields of the object types.

You can use the OSMetadata.xml configuration file to specify which object types should not be visible in the app and which index data fields should be shown in addition to the mandatory fields.

To hide object types for the filing tray, insert the tag <insert active> and set it to 'false.' The default value of the tag is 'true.'

Example:

<object name="Sales">
        <property name="title" field="Type"/>
        <property name="info" field="Short text"/>
      <insert active="false" />
</object>

To show additional index data, insert the tag <insert active> for each object type and specify inside it all index data fields that should be shown in the app in addition to the mandatory fields when filing an object.

Example:

<object name="Miscellaneous">
        <property name="title" field="Type"/>
        <property name="info" field="Short text"/>
	<insert active="true" />
		<property field="Type"/>
		<property field="Short text"/>
	</insert>
</object>