You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 16/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/date-only.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,13 +6,13 @@
6
6
7
7
`Returns: DateOnly?`
8
8
9
-
The Date Only property editor provides a simple interface for selecting dates without time or time zone information. It focuses purely on date selection and returns `DateOnly` values.
9
+
The Date Only property editor provides an interface for selecting dates without time or time zone information. It focuses purely on date selection and returns `DateOnly` values.
Copy file name to clipboardExpand all lines: 16/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/date-time-with-time-zone.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ Use this when you need more precise timing.
40
40
41
41
### Time zones
42
42
43
-
-**All** - Displays the full list of IANA time zones (e.g., `America/New_York`, `Europe/Stockholm`).
43
+
-**All** - Displays the full list of [IANA time zones](https://www.iana.org/time-zones) (e.g., `America/New_York`, `Europe/Stockholm`).
44
44
-**Local** - Displays only the local time zone of the user's browser/computer.
45
45
Useful for simplifying the UI when time entries should always be based on the user’s local context.
46
46
-**Custom** - Allows you to define a list of time zones.
@@ -54,7 +54,7 @@ When you select this option, a dropdown appears. You can search and select from
54
54
55
55
The selected time zone affects how the date/time is displayed and stored.
56
56
When you select a time zone, the value will be saved with the corresponding offset (e.g., `2025-01-01T14:30:00+01:00`).
57
-
Daylight saving time (DST) is also taken into account.
57
+
Daylight saving time is also taken into account.
58
58
59
59
## Editing experience
60
60
@@ -66,7 +66,7 @@ You will be presented with date, time and time zone inputs. The time zone input
66
66
67
67
If your browser time zone is in the list and no date has been stored yet, the browser time zone will be pre-selected by default.
68
68
69
-
If only one time zone is available, you will see a simple label with the time zone name instead.
69
+
If only one time zone is available, you will see a label with the time zone name instead.
70
70
71
71

This property editor stores values as a JSON object. The object contains both the date (as an ISO 8601 string) and the selected time zone (as an IANA identifier).
109
+
This property editor stores values as a JSON object. The object contains both the date (as an ISO 8601 string) and the selected [IANA](https://www.iana.org/time-zones) time zone identifier).
110
110
111
111
### Storage format
112
112
@@ -134,7 +134,7 @@ The property editor stores values in this JSON format:
134
134
publicDateTimeOffsetDate { get; init; }
135
135
136
136
/// <summary>
137
-
/// The IANA identifier of the time zone to pre-select in the editor. E.g., "Europe/Copenhagen".
137
+
/// The identifier of the time zone to pre-select in the editor. E.g., "Europe/Copenhagen".
Copy file name to clipboardExpand all lines: 16/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/time-only.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,14 +6,14 @@
6
6
7
7
`Returns: TimeOnly?`
8
8
9
-
The Time Only property editor provides a simple interface for selecting times. It excludes date or time zone information and returns strongly-typed `TimeOnly` values.
9
+
The Time Only property editor provides an interface for selecting times. It excludes date or time zone information and returns strongly-typed `TimeOnly` values.
10
10
11
11
## Key Features
12
12
13
13
- Time-based input selection
14
14
- Configurable time precision (hours/minutes or hours/minutes/seconds)
15
15
- No date or time zone components
16
-
-Simple, focused interface for time values
16
+
-Focused interface for time values
17
17
- Returns strongly-typed `TimeOnly?` values
18
18
- Ideal for business hours, schedules, and time-based events
0 commit comments