TYPO3 Gridelement 嵌套不起作用

TYPO3 Gridelement nesting not working

我已经基于 bootstrap_grids 创建了一个扩展,但无法嵌套网格元素。我知道 "allowed = *" 应该可以完成这项工作,但 ce 不会出现在嵌套元素中。

tx_gridelements {
    setup {
        section {
            title = LLL:EXT:h_grid/Resources/Private/Language/locallang_db.xlf:section.title
            description = LLL:EXT:h_grid/Resources/Private/Language/locallang_db.xlf:section.description
            icon = EXT:h_grid/Resources/Public/Icons/gridlayout_section.gif
            frame = 3
            topLevelLayout = 0
            config {
                colCount = 1
                rowCount = 1
                rows.1 {
                    columns {
                        1 {
                            name = LLL:EXT:h_grid/Resources/Private/Language/locallang_db.xlf:celayout.leftColumn
                            colPos = 101
                            allowed = *
                            allowedGridTypes = *
                        }
                    }
                }
            }
        }
        ....

我是不是漏掉了什么?

尝试省略这些行

allowed = *
allowedGridTypes = *

当您实际上没有排除任何元素时。