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

Missing Label as column #576

Open
mykolakozubskyi opened this issue Jan 21, 2025 · 0 comments
Open

Missing Label as column #576

mykolakozubskyi opened this issue Jan 21, 2025 · 0 comments

Comments

@mykolakozubskyi
Copy link

I'm using the B13 Container extension in TYPO3 to create a custom grid element with multiple columns. The configuration works perfectly on my local TYPO3 installation (a clean instance), but on the client's test system, I encounter an issue in the "Column" tab of the backend editor.

Instead of displaying the column number or its label, it shows "Missing Label[("201")]" for the custom colPos values I defined.

\TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\B13\Container\Tca\Registry::class)->configureContainer(
    (
        new \B13\Container\Tca\ContainerConfiguration(
            'pp-grid-6cols',
            'Grid 6 col',
            'Grid with 6 columns',
            [
                [
                    ['name' => '1', 'colPos' => 201],
                    ['name' => '2', 'colPos' => 202],
                    ['name' => '3', 'colPos' => 203]
                ],
                [
                    ['name' => '4', 'colPos' => 204],
                    ['name' => '5', 'colPos' => 205],
                    ['name' => '6', 'colPos' => 206]
                ]
            ]
        )
    )
    ->setIcon('EXT:dd_tmp/Resources/Public/Icons/grid-icon.png')
    ->setGroup('Grids')
);

Troubleshooting Tried:

  1. Verified that the same configuration works locally.
  2. Checked that colPos values do not conflict with existing extensions.
  3. Cleared TYPO3 cache and verified TCA configuration.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant