Hi i have a problem with the data processor i think but i don't how do for resolve it :
I have this :
{% for campaign in campaigns %}
<h2>{{ campaign.name }}</h2>
<table class="withBorder campaignIdentification" >
<thead>
<tr>
<th style="width:0%;">TEST</th>
<th style="width:0px;">SPECIFICATION<br/>VERSION</th>
<th style="width:0px;">MANDATORY</th>
<th style="width:100%;">JUSTIFICATION</th>
</tr>
</thead>
<tbody>
{% for test in campaign.tests %}
{% if test.mandatory == "NO" %}
<tr style="background-color:lightgrey">
{% else %}
<tr>
{% endif %}
<td style="width:0%;">{{ test.name }}</td>
<td style="width:0%;text-align: center">{{ test.version}}</td>
<td style="width:0%;text-align: center">{{ test.mandatory }}</td>
<td style="width:100%">{{ test.exec_justification|raw }} </td>
</tr>
{% endfor %}
</tbody>
</table>
{% endfor %}
it's a typical code for my application
After data transformation i have this code :
<p>{% set campaigns = Helper.campaignsIdentification.data %} {% for campaign in campaigns %}</p>
<h2>{{ campaign.name }}</h2>
<div>{{ campaign.description }}</div>
<p>{% for test in campaign.tests %} {% if test.mandatory == "NO" %} {% else %} {% endif %} {% endfor %}</p>
<table class="withBorder campaignIdentification" >
<thead>
<tr>
<th style="width:0%;">TEST</th>
<th style="width:0px;">SPECIFICATION<br />
VERSION</th>
<th style="width:0px;">MANDATORY</th>
<th style="width:100%;">JUSTIFICATION</th>
</tr>
</thead>
<tbody>
<tr style="background-color:lightgrey">
</tr>
<tr>
<td style="width:0%;">{{ test.name }}</td>
<td style="width:0%;text-align: center">{{ test.version}}</td>
<td style="width:0%;text-align: center">{{ test.mandatory }}</td>
<td style="width:100%">{{ test.exec_justification|raw }} </td>
</tr>
</tbody>
</table>
<p>{% endfor %}</p>
it's not really the same thing :(
How do for disable data transformation ?
thanks in advance for all suggestions ;)