View Single Post
  #1  
Old 07-15-2003, 02:22 PM
jason0816 jason0816 is online now
Registered User
 
Join Date: 07-14-2003
Location: MN
Posts: 10
Unhappy BUG report (or known issue?)

If I have the following (silly) code in a custom action GUI block, I get the options from the first list embedded in the second list.

This does not seem to be appropriate behavior.

I would have expected each list to contain a distinct set of items per the .action file.

I am running the latest evaluation download available as of 7/14/2003.

I look forward to hearing back on this one.

-- Jason

----------------------------------------
Code:
<Tab Name="My Tab">
<Field Name="Option1"
          Type="Combo"
          Description="Message"
          Width="50"
          DefaultValue="1">
          <ListData>
                    <ListItem Text="Option A"/>
                    <ListItem Text="Option B"/>
                    <ListItem Text="Option C"/>
          </ListData>
</Field>
<Field Name="DonkeyCheck" 
          Type="Check" 
          Description="Check if the Donkey is still alive?"/>
</Field>
<Field Name="TossIt"
          Type="Combo"
          Description="Throw what at the Donkey?"
          DefaultValue="1">
          <ListData>
                    <ListItem Text="A banana cream pie"/>
                    <ListItem Text="A whipped cream pie"/>
                    <ListItem Text="A bunch of jello"/>
          </ListData>
</Field>
</Tab>
Reply With Quote