-
Notifications
You must be signed in to change notification settings - Fork 67
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
Custom Backend Template breaks content columns #563
Comments
I have the same problem. |
I had the same problem and debugged it. TYPO3 throws a TYPO3 itself has an EventListener for this event, namely the Maybe this is a solution for you too. |
Also having this issue. It should be noted that this seems to be an incompatibility with TYPO3 13. The same version of container (3.1.1) doesn't have this issue with TYPO3 12. |
the container grid is not longer rendered after the content of the StandardContentRenderer but is assign as a variable "tx_container_grid" to the record. this variable is used in a backend template: <f:format.raw>{tx_container_grid}</f:format.raw> container shipped the default backend template (again, we has dropped this in EXT:container 3.0) in v12 and v13 the ContainerPreviewRenderer is no longer used we use PageContentPreviewRendering Event Listener instead of the ContainerPreviewRenderer the Listener assigns the container grid to tx_container_grid in v11 the PreviewRenderer is still used but assigns the grid as a variable instead of rendering the grid after the content background: in v13 the Event Listener "FluidBasedContentPreviewRenderer" was introduced for rendering backend templates and "disables" StandardContentRenderer if a backend template is defined. in addition with this change you can also render custom stuff in you backend template after the grid, which was not possible before Fixes: #563
When using a custom fluid backend template with the method setBackendTemplate() (https://github.com/b13/container/blob/master/README.md#methods-of-the-containerconfiguration-object), the content of the custom backend fluid template is being outputted in the page module, but the grid for placing content elements is not being shown. This happened after updating to container 3.1.0 on TYPO3 version 13.4.1. Before we used container version 1 and 2 on TYPO3 version 12 and the same backehnd template had no problems. Is this is a bug or is there a syntax change necessary? The documentation unfortunately says nothing about that topic.
The text was updated successfully, but these errors were encountered: