Review components

You can use tags and attributes to change the review components in a report template.
Table 1. Review components
Component Description Tags and attributes Example
fp:actionlist Presents an action list. In quick reports, you can choose whether the action list is detailed or not. In normal reports, the action list is always detailed. This component has the common attributes, the common tags, and these tags:
  • cpViewId: A mandatory tag of type viewParam that contains the ID of the view that has the checkpoints.
  • elemViewId: A mandatory tag of type viewParam that contains the ID of the view that has the elements.
<fp:actionlist
	descr="Action list">
	<fp:viewParam
			changeable="template"
			id="101"
			name="cpViewId"
			descr="The checkpoint view"
	/>
	<fp:viewParam
			changeable="template"
			id="102"
			name="elemViewId"
			descr="The element view"
	/>
</fp:actionlist>
fp:review Presents information about all the completed review work except the action list. This component has the common attributes, the common tags, and these tags:
  • cpViewId: A mandatory tag of type viewParam that contains the ID of the view that has the checkpoints.
  • elemViewId: A mandatory tag of type viewParam that contains the ID of the view that has the elements.
<fp:review
	descr="review overview">
	<fp:viewParam
			changeable="template"
			id="101"
			name="cpViewId"
			descr="The checkpoint view"
	/>
	<fp:viewParam
			changeable="template"
			id="102"
			name="ele,ViewId"
			descr="The element view"
	/>

</fp:review>

Feedback