-1

I just enabled the feature portfolio on my backlog and the add button is disabled. The only way to add Feature is with an extension that I found, but it's not a good solution for me. How can I enable adding Feature on my backlog?

I'm currently using tfs2017.1 on premise

jessehouwing
  • 106,458
  • 22
  • 256
  • 341
Elad Motola
  • 45
  • 10
  • What do you mean? Can you add a screenshot? Exact error message? Which backlog level are you on? – jessehouwing Mar 29 '18 at 13:28
  • Can't add asscreenshot unfortunately, and there is no error message. My backlog level is Features. The add button there is disable and I can't add title as well – Elad Motola Mar 29 '18 at 13:50
  • I can add that on other projects adding Features are enabled. So something is not OK with this project. I didn't know what to change At the XML – Elad Motola Mar 29 '18 at 13:56

1 Answers1

0

Make sure you add the addpanel in the processconfiguration.xml:

This is the default from the Aile template

<PortfolioBacklog category="Microsoft.FeatureCategory" pluralName="Features" singularName="Feature" parent="Microsoft.EpicCategory" workItemCountLimit="1000">
  <States>
    <State value="New" type="Proposed" />
    <State value="Active" type="InProgress" />
    <State value="Resolved" type="InProgress" />
    <State value="Closed" type="Complete" />
  </States>
  <Columns>
    <Column refname="System.WorkItemType" width="100" />
    <Column refname="System.Title" width="400" />
    <Column refname="System.State" width="100" />
    <Column refname="Microsoft.VSTS.Scheduling.Effort" width="50" />
    <Column refname="Microsoft.VSTS.Common.BusinessValue" width="50" />
    <Column refname="Microsoft.VSTS.Common.ValueArea" width="100" />
    <Column refname="System.Tags" width="200" />
  </Columns>
  <AddPanel>
    <Fields>
      <!-- Make sure all required fields in state new are listed here -->
      <Field refname="System.Title" />
    </Fields>
  </AddPanel>
</PortfolioBacklog>
jessehouwing
  • 106,458
  • 22
  • 256
  • 341