Symptoms
Link rendering issues manifest in several ways:- Item link columns display raw IDs instead of formatted hyperlinks
- Links break after editing adjacent columns
- Links become unclickable when the column filter or search is active
- Multi-item link columns show raw JSON instead of formatted item labels
Understand How Link Rendering Works
_link postfix property (e.g., for a column with binding requirement, the HTML content comes from requirement_link). When this property is empty or missing, the cell falls back to displaying the raw value.
Fix Broken Links After Editing
Link rendering can break when editable columns are modified alongside rendered link columns in the same save operation.- Check whether the issue occurs only after editing specific columns
- If link columns break after saving edits to adjacent columns, configure
refreshOnSavein theglobalsection of yourrisksheet.json:
Fix Multi-Item Link Display Issues
Multi-item link columns store data as a JSON array of{id, label, title} objects. Each item displays as a separate entry with a title tooltip showing the full ID and title.
If multi-item links display incorrectly:
- Verify the column is configured with the correct type (e.g.,
multiItemLink) - Check that the underlying Polarion field contains valid JSON array data
- Confirm that linked items are accessible in the target project
Fix Item Link Columns Showing Raw Values
If item link columns show raw IDs instead of clickable links:- Verify the column definition includes the correct
bindingproperty - Check that the linked work item exists and is accessible
- Review the column type — item link columns should use the appropriate column type attribute
| Column Type | Expected Behavior | Common Issue |
|---|---|---|
itemLink | Clickable link with item label | Missing _link property from server |
multiItemLink | List of clickable links | Invalid JSON in cell value |
taskLink | Clickable task reference | Task item not accessible |
Fix Server Error: “no id when getting links”
If you see the errorno id when getting links in server logs, a work item referenced in a link column is missing its ID. This typically occurs when:
- A linked work item was deleted from Polarion
- Cross-project link references point to items in inaccessible projects
- The work item data is corrupted
Verify the Fix
After applying corrections:- Refresh the Risksheet page
- Click on a link column cell to verify the link is rendered as a clickable hyperlink
- Edit a cell in an adjacent column, save, and confirm that link columns still render correctly
See Also
Sources
Sources
Support TicketsSource Code
ExportToPdf.tsCellPreviewFormatter.tsExportToExcel.tsRiskSheetContextMenu.ts