Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    TimeItem XML attributes not working

    Hello Isomorphic Team,

    version in use is latest Power edition.

    Defining XML attributes in component TimeItem like hourMinValue="7", hourMaxValue="21" minuteIncrement="15" showSecondItem="false"
    are not working, some are even breaking the functionality (nothing shown in drop down box)

    When forcing the attributes to the correct data type via xsi:type it works ok.

    Test snippet:

    <VLayout height="200">
    <members>
    <DynamicForm numCols="2" autoDraw="true" >
    <fields>
    <TimeItem name="time1" title="Bis" required="true" hourMinValue="7" hourMaxValue="21" minuteIncrement="15" showSecondItem="false" useTextField="false" />
    <TimeItem name="time2" title="Von" required="true" useTextField="false">
    <hourMinValue xsi:type="xsd:integer">7</hourMinValue>
    <hourMaxValue xsi:type="xsd:integer">21</hourMaxValue>
    <minuteIncrement xsi:type="xsd:integer">15</minuteIncrement>
    <showSecondItem xsi:type="xsd:boolean">false</showSecondItem>
    </TimeItem>
    </fields>
    </DynamicForm>
    </members>
    </VLayout>

    In the test, the first TimeItem is not working:
    - hourItem has no values at all
    - minuteItem is not showing correct values (no 15 min steps)
    - secondItem is displayed but should be hidden.

    Please have a look.

    Thank you,
    Best regards,
    Daniel
Working...
X