Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Backport 12.4] Annotate TCA options in "none" docs #1078

Merged
merged 1 commit into from
Jun 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Documentation/ColumnsConfig/Type/None/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ These are the :ref:`none type <columns-none>`, the :ref:`passthrough type <colum

Characteristics of `none`:

* The :ref:`DataHandler <t3coreapi:datahandler-basics>` discards values send for type none and never
* The :ref:`DataHandler <t3coreapi:datahandler-basics>` discards values send for type `none` and never
persists or updates them in the database.
* Type none is the only type that does **not** necessarily need a database field.
* Type none fields does have a default renderType in FormEngine that displays the value as readonly
* Type `none` is the only type that does **not** necessarily need a database field.
* Type `none` fields does have a default `renderType` in FormEngine that displays the value as readonly
if a database field exists and the value can be formatted.
* If no database field exists for none fields, an empty readonly input field is rendered by default.
* Type none fields are designed to be not rendered at other places in the backend, for instance they can
* If no database field exists for `none` fields, an empty readonly input field is rendered by default.
* Type `none` fields are designed to be not rendered at other places in the backend, for instance they can
not be selected to be displayed in the list module "single table view" if everything has been configured
correctly.

Expand Down
Loading