Hi,
I have mixed both HTML and ADF tags together and wanted the div class to be applied to the outputText tag.
<div class="somestyle">
<af:outputText value="this is actually some html string" escape="false">
</div>
However, when I inspect the output, WebCenter Portal renders something like this. How do I ensure the outputText generated output is in between my div tags?
<div class="somestyle">
</div>
<!-- new div tag generated by af:outputText -->
<div>
</div>