What You Can Parametrize
Planningboard exposes two report-link parameters — one for Plan columns and one for swimlane rows. Both accept a URL string with embedded template variables that are resolved at render time.
The resolved URL is opened when a user clicks the column label or swimlane label on the board.
1
Add a Report Link to Plan Columns
- Open the Planningboard widget parameter editor (click Edit Parameters in the board toolbar or edit the page in Polarion).
- Scroll to the Parameters for Plans (Columns) section.
- Locate the Report Link field.
- Enter a URL template using
${plan.objectId.projectId}and${plan.objectId.itemId}to reference the plan bound to that column.
${plan.objectId.projectId} resolves to the Polarion project ID (e.g. MyProject). The variable ${plan.objectId.itemId} resolves to the Plan ID (e.g. Iteration_4).2
Add a Report Link to Swimlane Labels
- In the widget parameter editor, scroll to the Swimlanes (Rows) section.
- Locate the Report Link field under swimlane configuration.
- Enter a URL template using
${r.objectId.itemId}to reference the resource (user, team, or enum value) bound to that swimlane.
${r.objectId.itemId} resolves to the resource identifier for the swimlane — typically a Polarion user ID when the swimlane assignment type is user/assignee-based.3
Verify the Links
- Save the widget parameters and reload the board page.
- Click a column header (plan label) — the browser should open the URL you configured, with the
${plan.*}variables replaced by the actual plan’s project ID and item ID. - Click a swimlane label — the browser should open the URL with
${r.objectId.itemId}replaced by the resource identifier for that row.
Reference: Template Variable Summary
Common Pitfalls
See Also
- Widget Parameters Overview — full reference for all widget parameters including Report Link fields
- Configure Plans (Columns) — set up which Plans appear as columns
- Configure Swimlanes (Rows) — set up swimlane assignment type and row configuration
- Use Page Parameters — pass dynamic values into the board from the Polarion page URL
- Dynamic Filtering with Page Parameters — filter the board using URL-level parameters