Resolve save failures and validation errors when working with date columns in Nextedy RISKSHEET, including format property conflicts and configuration syntax issues.
Nextedy RISKSHEET version 24.5.0 introduced a timezone handling fix that inadvertently broke date column saving when the format property was configured. This issue was identified and resolved in subsequent patch releases.Symptoms:
Save operations fail for date columns with custom format property
Error messages referencing date validation or formatting
Changes to date fields are not persisted to Polarion
Version-Specific Workaround:If you are running v24.5.0 and cannot immediately upgrade:
Remove the format property from date column definitions in risksheet.json
Users must enter dates manually in YYYY-MM-DD format directly into cells
The calendar date picker will not function without the format property
The timezone fix in version 24.5.0 introduced a regression where date columns with format property could not be saved. This was addressed as a high-priority bug. If you are still on v24.5.0, upgrade to v24.5.1 or later to restore full date column functionality with format support.
Permanent Solution:Upgrade to RISKSHEET v24.5.1 or later, which resolves the date format regression:
Contact your Polarion administrator to schedule the update
After upgrading, restore format properties to date columns
Test date editing with calendar picker and direct cell entry
Copy
Ask AI
{ "columns": [ { "id": "dueDate", "header": "Due Date", "binding": "dueDate", "type": "date", "format": "yyyy-MM-dd" // Safe to use in v24.5.1+ } ]}
Date columns configured with incorrect property casing will not behave as expected. The readOnly property must use camelCase, not lowercase.Incorrect (lowercase):
All RISKSHEET configuration properties follow JavaScript camelCase convention: readOnly, showInMenu, canCreate, minWidth, etc. Using lowercase variants (readonly, showinmenu) will cause the property to be silently ignored, reverting to default behavior.
When configuring date columns that reference upstream linked work items, ensure the binding path and readOnly property are correctly set.Example: Editable Upstream Date Column
With format property: Calendar picker should appear
Without format property: Cell should allow direct text entry
Enter or select a date
Press Enter to commit the change
Click 💾 Save
Verify no error messages appear
Refresh the page and confirm the date value persists
You should now see date columns functioning correctly with both calendar picker input (when format is defined) and direct text entry (YYYY-MM-DD format), with all changes saving successfully to Polarion.