You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like the type for InitialValue is set to float and the model appears to allow a string.
<xs:elementname='InitialValue'type='DataItemNumericValueType'minOccurs='0'maxOccurs='1'>
<xs:annotation>
<xs:documentation>
starting value for a {{block(DataItem)}} as well as the value to be
set for the {{block(DataItem)}} after a reset event.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:simpleTypename='DataItemNumericValueType'>
<xs:annotation>
<xs:documentation>
The constrained value for this data item
</xs:documentation>
</xs:annotation>
<xs:restrictionbase='xs:float'/>
</xs:simpleType>
If this is incorrect, then the below seemed to match the model and pass validation:
<xs:elementname='InitialValue'type='DataItemValueType'minOccurs='0'maxOccurs='1'>
<xs:annotation>
<xs:documentation>
starting value for a {{block(DataItem)}} as well as the value to be
set for the {{block(DataItem)}} after a reset event.
</xs:documentation>
</xs:annotation>
</xs:element>
The text was updated successfully, but these errors were encountered:
It looks like the type for InitialValue is set to float and the model appears to allow a string.
If this is incorrect, then the below seemed to match the model and pass validation:
The text was updated successfully, but these errors were encountered: