Code: Select all
<Field id='list1' type='menu' >
<Label>Response to an ON event:</Label>
<List>
<Option value="1">Option 1</Option>
<Option value="2">Option 2</Option>
</List>
</Field>
<Field id='text1' type='textfield' visibleBindingId='list1' visibleBindingValue='1' >
<Label>Select the Group/Scene:</Label>
</Field>
<Field id='text2' type='textfield' visibleBindingId='list1' visibleBindingValue='2' >
<Label>Select the ON Action Group:</Label>
</Field>However, if I add a third state and a set it as the default, like:
Code: Select all
<Field id='list1' type='menu' defaultValue='0'>
<Label>Response to an ON event:</Label>
<List>
<Option value="0"> - Select Something - </Option>
<Option value="1">Option 1</Option>
<Option value="2">Option 2</Option>
</List>
</Field>Bug, un-documented feature, or programmer mental vacancy?