Skip to main content
diagram

Item Identity Fields

These bindings track work item identity across revisions and enable baseline comparison. Risksheet uses them to maintain item relationships when viewing historical revisions or comparing baselines.
When viewing a historical document revision (i.e., when the revision parameter is set in the URL), the entire Risksheet grid is automatically forced into read-only mode. This is controlled by the configuration parser, which sets readonly to true whenever a non-empty revision is detected.

Standard Item Data Bindings

These bindings provide access to common work item properties that appear in grid columns and drive navigation behavior. For columns that reference linked work items, Risksheet uses a naming convention with a _link suffix.
The _link suffix convention applies throughout Risksheet. When you define an item link column with "id": "sysReq", the system automatically creates a companion property sysReq_link containing the rendered HTML for that link. The same pattern applies to task link columns — a column with "id": "taskId" generates taskId_link.

Read-Only State Fields

These fields control which items and cells can be edited in the Risksheet grid. Read-only state operates at multiple levels: grid-level, item-level, field-level, and task-specific.

Item-Level Read-Only

Task-Level Read-Only

The Polarion resolution field cannot be edited from within Risksheet. This field is typically a mandatory field during status transitions, and status changes from Risksheet only work when all transition conditions are met without mandatory field requirements. If you need to set the resolution, use the Polarion work item editor directly.

Read-Only State Hierarchy

Read-only state is determined at multiple levels, with the most restrictive level taking precedence:

System-Managed Fields

The following fields are always read-only because they are managed by Polarion:

System Fields Excluded During Paste Operations

When using the Insert Rows Below command to paste items from the clipboard, the following system fields are automatically excluded from the pasted data to ensure proper identity generation for new items:

Reference Item Fields

Right-click a referenced item (where systemReferenceType is reference) and select Overwrite Row Item from the context menu. This changes the value to overwrite, converting the item to a local copy that you can modify. This option requires refreshOnSave to be enabled (the default).

Review Workflow Fields

These bindings enable the review workflow features in the Risksheet grid. They are available when the reviews section is configured in sheet configuration.

Review Manager Types

The reviews.reviewManager property determines which review strategy is used:

Complete Example

The following sheet configuration excerpt demonstrates how system fields interact with column configuration and permission settings:
In this configuration:
  • readonly: false allows grid-level editing
  • downstreamReadonly: true prevents editing of linked items from other documents and blocks task creation for downstream items
  • The ID column is explicitly read-only via the column-level readOnly property
  • The rpn column is automatically read-only because it has a formula property
  • The sysReq column has a companion sysReq_link binding available via the _link suffix convention
  • Review columns (reviewsRendered, reviewsAdd) are implicitly available because reviews is configured
  • Items with systemReadOnly: true override all column-level settings and lock the entire row
  • Items with systemReferenceType: "reference" appear as read-only cross-project references with an Overwrite Row Item context menu option
Last modified on July 10, 2026