Initializing help system before first use

Using the Standard VDL Components with Progress Updates

Once the view can display custom VDL during execution, it is possible to also use other VDL components that will display useful information about model progress.
Any VDL component that takes the name of an entity can use a progress entity that has been defined in the model. A VDL Field can display a scalar value, so you would want to
<vdl-field value="=scenario.entities.PROGRESS_SCALAR.value"></vdl-field> 
set the 'enabled' attribute to false. Alternatively, it is possible to use an expression and a VDL Var to set the value of the vdl-field.
If there are progress entities of array type in the model then you can use these easily with <vdl-table> and <vdl-chart>:
<vdl-table>
		<vdl-table-column entity="PROGRESS_ARRAY"></vdl-table-column>
</vdl-table> 
This works the same for input and result entities. As the model updates this array with progress data then the table (or chart) will update accordingly.
Lastly, any of the VDL Attributes (vdl-text, vdl-if, vdl-repeat, etc..) can react to progress updates.
<span vdl-text="=scenario.entities.PROGRESS_SCALAR.value + '%'"></span>
 

© 2001-2025 Fair Isaac Corporation. All rights reserved. This documentation is the property of Fair Isaac Corporation (“FICO”). Receipt or possession of this documentation does not convey rights to disclose, reproduce, make derivative works, use, or allow others to use it except solely for internal evaluation purposes to determine whether to purchase a license to the software described in this documentation, or as otherwise set forth in a written software license agreement between you and FICO (or a FICO affiliate). Use of this documentation and the software described in it must conform strictly to the foregoing permitted uses, and no other use is permitted.