Welcome to the Jazz Community Forum
Creating a Multi Select List on Work Items

Custom Attribute - Change_Type
Attribute Type - Enumeration
Add Presentation -
ID - ""
Kind - Multi-Select List
Attribute - Change_Type
The field never appears on the Work Item form. If I change the Kind - Enumeration is works fine.
I have a static list the needs to be displayed and multiple entries can be selected. I am open to any suggestion to make that work
6 answers

As attribute type you have to use smallString or mediumString or String. Then, when configuring the presentation, you configure it to show up as Multi-Select List or Checkbox List presentation and add a property with key 'enumeration' and value the id of your enumeration.
References: Work Item Editor Presentations article: http://jazz.net/library/article/130
Be aware that the underlying enumeration is only available to the work item editor. Creating a query for that attribute is then more difficult.
Regards
Marcel
Jazz Work Item team

Hi
As attribute type you have to use smallString or mediumString or String. Then, when configuring the presentation, you configure it to show up as Multi-Select List or Checkbox List presentation and add a property with key 'enumeration' and value the id of your enumeration.
References: Work Item Editor Presentations article: http://jazz.net/library/article/130
Be aware that the underlying enumeration is only available to the work item editor. Creating a query for that attribute is then more difficult.
Regards
Marcel
Jazz Work Item team
Thanks Marcel,
That is exactly the information that I needed.
Thanks,
Mat
Comments

Be aware that the underlying enumeration is only available to the work item editor. Creating a query for that attribute is then more difficult.
How do you create a query for this type of custom attribute?

Yes, I have the same question as David...
Creating this Multi-Select Checkbox with String works in the presentation, however you cannot create a query based on the enumeration of that attribute. Anytime I've created a query it forces me to use "Full Text" which is a total drag since I had already taken the time to create the specific enumerations for that attribute.
How can we create a proper Multi-Select Checkbox in the presentation for attributes which can also be used in queries?? I really need to know how to accomplish this :))


second, to make this semi useful for your users, after creating the Enum, use the Process XML source view and change the generated enum ID values to known useful fixed strings (warning, IDs are project wide not workitem specific, so they will show everywhere)..
then you can build a query Enum list contains Defect_Feature_A (a made up enum ID value)
Sam