Basic Date Column Configuration
To add a date column to your RISKSHEET, specify the column type and optional format:Date and Time Column Types
Nextedy RISKSHEET supports three temporal column types:| Type | Description | Example Display |
|---|---|---|
date | Date only (no time) | 2/6/2025 |
datetime | Date with time | 2/6/2025 1:36 PM |
time | Time only | 1:36 PM |
Date Column Example
DateTime Column Example
Time Column Example
Date Format Options
Theformat property controls how dates display in the grid. Formats are applied based on the culture setting (configured via global.culture).
Common Date Formats
| Format Code | Description | Example (en-US) |
|---|---|---|
d | Short Date Pattern | 2/6/2025 |
D | Long Date Pattern | Saturday, February 06, 2025 |
f | Full Date/Time (short time) | Saturday, February 06, 2025 1:36 PM |
F | Full Date/Time (long time) | Saturday, February 06, 2025 1:36:27 PM |
t | Short Time Pattern | 1:36 PM |
T | Long Time Pattern | 1:36:27 PM |
'Q'Q yyyy | Quarter/Year | Q1 2025 |
MMMM dd, yyyy | Custom format | February 06, 2025 |
Custom Date Formats
You can create custom date formats using standard format tokens:2025-02-06
Date Input Methods
Users can input dates in RISKSHEET using two methods:| Method | Interaction | Format |
|---|---|---|
| Calendar Picker | Click cell, select date from popup | Display format from config |
| Direct Entry | Click cell, type date, press Enter | Always YYYY-MM-DD (ISO) |
Direct Entry Format
When typing dates directly into cells, always use ISO format:YYYY-MM-DD
Example: 2025-02-06 for February 6, 2025
Localization and Culture Settings
Date formats are influenced by the culture setting in yourrisksheet.json:
en-US: 2/6/2025 (MM/DD/YYYY)en-GB: 6/2/2025 (DD/MM/YYYY)de-DE: 06.02.2025 (DD.MM.YYYY)
Upstream Date Columns
To display date fields from linked upstream items:Common Pitfalls
Verification
After configuring date columns:- Reload your RISKSHEET to apply the configuration
- Click a date cell — you should see a calendar picker popup
- Select a date from the calendar or type a date in
YYYY-MM-DDformat - Press Enter or click outside the cell — the date should display in your configured format
- Save the RISKSHEET — the date should persist correctly
See Also
- Date and Time Columns Reference — Complete date column property reference
- Data Rendering and Formatting — Additional formatting options
- Culture and Localization Codes — Supported culture codes for date formatting
- Date Column Save Errors — Troubleshoot date save issues
- Enable Editing of Upstream Columns — Make upstream date fields editable
Sources
Sources
KB ArticlesSupport TicketsSource Code
CellPreviewFormatter.tsGetSetUtil.javaPolarionAppConfigManager.javaResetColumnsCommand.tsConfigureColumnsCommand.ts