display html in a row
display html in a row

is escaped by default against XSS attack, however, I could'nt find how to render it
FontAwesome icon
<i class="fas fa-user-shield"></i>
This discussion has been closed.
is escaped by default against XSS attack, however, I could'nt find how to render it
FontAwesome icon
<i class="fas fa-user-shield"></i>
Answers
Try
columns.render
.Kevin
this is what i have so far
<script type="text/javascript">$('#iUser').DataTable({
"columnDefs": [ {
"targets": 3,
"render": function ( data, type, row ) {
return data;
},
} ]
});</script>
it's still escaped ...
my bad, the escaping was done by twig, didn't realize it