I'm using the Typo3 v10.4 and Gridelements v10, i did include the Typoscript templates W/Dataprocessing but i get an empty div container(i get the fluid html code but not the {data.tx_gridelements_view_column_200-> f:format.raw()})
, i did not include the depricated Typoscript templates for gridelements. if i include them i get the content from the backend but i loose the fluid/html configuration.
2col.html fluid file
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
<f:layout name="Default"/>
<f:section name="Main">
<div class="row">
<div class="col-sm-6">
{data.tx_gridelements_view_column_200-> f:format.raw()}
</div>
<div class="col-sm-6">
{data.tx_gridelements_view_column_300-> f:format.raw()}
</div>
</div>
</f:section>
</html>