Book a Demo

Author Topic: Tagged Values  (Read 2276 times)

Vibki_B

  • EA Novice
  • *
  • Posts: 2
  • Karma: +0/-0
  • I love YaBB 1G - SP1!
    • View Profile
Tagged Values
« on: August 16, 2006, 08:33:53 pm »
I would like to set up a Tag Definition of "DET Priority" to have a drop down list for selection rather than free-format entry.  My drop-down list is M,HD,D,N,P,G.  (Obviously it would have been better if I could have just edited the default EA Priorities of High Medium and Low but I believe this is impossible for now).

I will be adding Tagged Values for each of my requirements, and want to select one value of the 6 above.  I already know how to make the Tagged Values visible in the Requirements viewer.

I am not a techie, so please can any help be very basic!! :-[

Exactly what do I need to type into the Description, and Detail boxes of Tag Definition?

I will be so happy if I can get this sorted!

KP

  • EA Administrator
  • EA Expert
  • *****
  • Posts: 2919
  • Karma: +55/-3
    • View Profile
Re: Tagged Values
« Reply #1 on: August 16, 2006, 08:58:29 pm »
Try this:

Code: [Select]
Type=Enum;
Values=M,HD,D,N,P,G;
Default=M;


Press the Help button on the Tagged Value Types button to see the full range of structured tags.

HTH
The Sparx Team
[email protected]

Vibki_B

  • EA Novice
  • *
  • Posts: 2
  • Karma: +0/-0
  • I love YaBB 1G - SP1!
    • View Profile
Re: Tagged Values
« Reply #2 on: August 16, 2006, 09:06:28 pm »
Thanks so much!