MultiValueControl - no checkboxes in WebAccess

Hi I am trying to use the MultiValueControl, and it works fine with VS2012, but in the Web extension the checkboxes in the dropdown is missing. If I manually write the items I want to select in the edit-field (like this: "[Item 1];[Item 2]") and then save the workitem, the values are saved. Also if I search and open a workitem where the value is already set, I can see in the edit-field that the selected items are "[Item 1];[Item 2]". So getting the options and values from TFS, and saving to TFS is working. Only the checkboxes in the options in the dropdown on the Web-client is missing. I am using TFS 2012 update 2 and Visual Studio 2012 update 2. I have tested with IE10 and Chrome, and it is the same problem in both browsers.
Type: Unassigned
Status: Closed
Reported: 23.05.2013 6:57:06 -07:00
Priority: 0 Unassigned
Vote count: 1
Last updated: 24.05.2013 6:02:23 -07:00
Planned for release:
Resolution:
Closed: 24.05.2013 6:02:23 -07:00
24.05.2013 6:02:23 -07:00
24.05.2013 6:01:03 -07:00
Good to hear it worked out and thanks for sharing your findings!
24.05.2013 2:04:12 -07:00
It was the configuration of the control in the WorkItem form. I used a configuration I found in a blogpost that pointed to this project, and it was different from the description here. The correct configuration was as described here ( [MultiValue Control](https://witcustomcontrols.codeplex.com/wikipage?title=Multivalue%20control) ) ``` <Control Type="MultiValueControl" FieldName="Microsoft.VSTS.Common.Triage" Label="Triag&amp;e:" LabelPosition="Left" /> ``` Now it works perfectly.