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: packages/builder/README.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -462,7 +462,7 @@ Navigation: **Fields → Field Groups**
462
462
|**Visibility**| Per context: admin, frontend, API (`visible_*` toggles) |
463
463
|**Conditional logic**| Show/hide rules based on sibling field values (root, group, repeater, flexible layout) |
464
464
|**Table column**| Optional list-column settings for scalar, media, and relation fields — see [Table columns](#table-columns)|
465
-
|**Table filter**| Optional list-filter chip for select, radio, button_group, toggle, single relation, and text-like fields — see [Table filters](#table-filters)|
465
+
|**Table filter**| Optional list-filter chip for select, radio, button_group, toggle, single relation, text-like, and number/range/date/datetime fields — see [Table filters](#table-filters)|
466
466
467
467
Repeater rows are collapsed by default and show type, key, and required flag in the label.
468
468
@@ -533,10 +533,11 @@ One filter chip per filterable field, compiled from the **Show in table filter**
Choice fields need at least one option; relation fields need `related_entity` set and `multiple` off.
538
+
Choice fields need at least one option; relation fields need `related_entity` set and `multiple` off. Range filters accept either bound alone (open-ended) or both.
538
539
539
-
**Not filterable at all:**number, range, date, datetime, media, multiselect/checkbox list, and compound fields (group, repeater, clone, flexible content) — no dedicated filter chip is compiled for these.
540
+
**Not filterable at all:** media, multiselect/checkbox list, and compound fields (group, repeater, clone, flexible content) — their values are stored as JSON, not a single comparable value, so no dedicated filter chip is compiled for these.
Copy file name to clipboardExpand all lines: packages/builder/resources/lang/de/builder.php
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -86,6 +86,11 @@
86
86
'save_failed' => 'Feldgruppe konnte nicht gespeichert werden',
87
87
],
88
88
89
+
'filters' => [
90
+
'from' => 'Von',
91
+
'until' => 'Bis',
92
+
],
93
+
89
94
'field' => [
90
95
'label' => 'Feldbezeichnung',
91
96
'label_helper' => 'Sichtbarer Name im Formular.',
@@ -135,7 +140,7 @@
135
140
'show_in_table' => 'In Tabelle anzeigen',
136
141
'show_in_table_helper' => 'Fügt dieses Feld als Spalte auf den Listen-Seiten hinzu. Standardmäßig ausgeblendet; über den Spalten-Umschalter aktivierbar.',
137
142
'show_in_filter' => 'Als Listenfilter',
138
-
'show_in_filter_helper' => 'Fügt einen Listenfilter für Auswahl-, Wahr/falsch-, Beziehungs- und Textfelder hinzu. Standardmäßig aus.',
143
+
'show_in_filter_helper' => 'Fügt einen Listenfilter hinzu: Auswahl/Wahr-falsch/Beziehung als Auswahlfilter, Text als Freitextsuche, Zahl/Bereich/Datum/Datum-Zeit als Von-bis-Filter. Standardmäßig aus.',
139
144
'show_in_filter_relation_multiple_helper' => 'Listenfilter gibt es nur für einfache Beziehungsfelder (ohne Mehrfachauswahl).',
140
145
'show_in_filter_relation_entity_helper' => 'Zuerst „Beziehung zu“ wählen, dann den Listenfilter aktivieren.',
141
146
'show_in_filter_choice_options_helper' => 'Mindestens eine Option hinzufügen, bevor der Listenfilter aktiviert werden kann.',
Copy file name to clipboardExpand all lines: packages/builder/resources/lang/en/builder.php
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -86,6 +86,11 @@
86
86
'save_failed' => 'Field group could not be saved',
87
87
],
88
88
89
+
'filters' => [
90
+
'from' => 'From',
91
+
'until' => 'Until',
92
+
],
93
+
89
94
'field' => [
90
95
'label' => 'Field label',
91
96
'label_helper' => 'Visible name in the form.',
@@ -135,7 +140,7 @@
135
140
'show_in_table' => 'Show in table',
136
141
'show_in_table_helper' => 'Adds this field as a column on entity list pages. Hidden by default; enable via the column toggle.',
137
142
'show_in_filter' => 'Show in table filter',
138
-
'show_in_filter_helper' => 'Adds a list filter for select, toggle, relation, and text fields. Off by default.',
143
+
'show_in_filter_helper' => 'Adds a list filter: select/toggle/relation as a picker, text as a "contains" search, number/range/date/datetime as a from–until range. Off by default.',
139
144
'show_in_filter_relation_multiple_helper' => 'List filters are only available for single relation fields. Disable “Multiple” first.',
140
145
'show_in_filter_relation_entity_helper' => 'Choose a related entity before enabling the list filter.',
141
146
'show_in_filter_choice_options_helper' => 'Add at least one option before enabling the list filter.',
0 commit comments