Can we create custom filters defnitions for filtering Plan View ?
2 answers
Hi Anil,
Custom Filters can be defined at the process template level - modifying existing configuration for each of the plan modes. So, when the plan view is invoked, it will pick up the changes and display. This is equivalent to a custom filter.
Thanks.
Custom Filters can be defined at the process template level - modifying existing configuration for each of the plan modes. So, when the plan view is invoked, it will pick up the changes and display. This is equivalent to a custom filter.
Thanks.
This is some sample from existing process template
<filters>
<filter definition="com.ibm.team.apt.filter.excludeRisk" />
<filter definition="com.ibm.team.apt.filter.resolved" />
</filters>
and this equivalent filter should be defined :
<filter description="Exclude risk work items." id="com.ibm.team.apt.filter.excludeRisk" implementation="com.ibm.team.apt.shared.ui.internal.filter.WorkItemTypeFilter" name="Risks">
<parameters>
<parameter key="exclude-types" value="com.ibm.team.workitem.workItemType.risk"/>
</parameters>
</filter>
</configuration-data> -->
<parameters>
<parameter key="exclude-types" value="com.ibm.team.workitem.workItemType.risk"/>
</parameters>
</filter>
</configuration-data> -->