The value properties entry display can be configured to enter and edit a free amount of properties with different keys and types.

The properties will be read from and written to a time series which is determined by a configurable time series set and a selected location from either the explorer or IFD.

It also supports tables with locations that are connected to the main location via an attribute.

The connections between the main location and the other locations are configured in <subLocationsStructures>.

This is done to keep the data structure information separate from the user interface which keeps the code and configuration cleaner and this way the <subLocationStructure> configuration can be reused in the report export valuePropertiesTags without needing the user interface configuration. 


{code:xml}

    <valuePropertiesVariableId>MFDO_MainReport</valuePropertiesVariableId>
    <subLocationsStructure id="Locations_Level">
        <variableId>Level_MFDO_Peak</variableId>
        <matchingSubLocationAttributeId>MFDOArea</matchingSubLocationAttributeId>
        <templateFile>Forecast_Summary_Report_Level_Location_Template.html</templateFile>
    </subLocationsStructure>
    <subLocationsStructure id="Locations_Flow">
        <variableId>Flow_MFDO_Peak</variableId>
        <matchingSubLocationAttributeId>MFDOArea</matchingSubLocationAttributeId>
        <templateFile>Forecast_Summary_Report_Flow_Location_Template.html</templateFile>
    </subLocationsStructure>

{code}