---
title: "Feature: #17309 - Access flexform value via TS"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-17309"
source: "Changelog/8.4/Feature-17309-AccessFlexformValueViaTS.rst"
modified: "2026-09-15T10:46:36+00:00"
---

# Feature: #17309 - Access flexform value via TS

See [forge#17309](https://forge.typo3.org/issues/17309)

## Description

It is now possible to access properties of a flexform field by using TypoScript.

```typoscript
lib.flexformContent = CONTENT
lib.flexformContent {
    table = tt_content
    select {
        pidInList = this
    }

    renderObj = COA
    renderObj {
        10 = TEXT
        10 {
            data = flexform: pi_flexform:settings.categories
        }
    }
}
```

The key `flexform` is followed by the field which holds the flexform data and the name of the property whose content should be retrieved.
