Using Dynamic Attributes
Expression Value
vdl-repeat or 
  vdl-repeat-contents loop where the value or index of the loop iteration is needed to populate an attribute in a VDL or HTML element. 
  <div vdl-repeat="=s,i in scenarios"
     vdl-attr="={id: 'scenarioId'+s.id}">
</div>div in the repeat loop gaining an id attribute based on combining the string 
  scenarioId with the 
  id of each scenario referenced in the loop, which is all scenarios on the shelf. 
 String Value
vdl-attr as a string. 
  <vdl-row vdl-repeat-contents="=num, idx in ['a','b','c']">
    <vdl-column vdl-attr="size: idx+1">
        ...
    </vdl-column>
</vdl-row>© 2001-2021 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.
 
