mRender spring security tag
mRender spring security tag
Hi community,
I have this code:
[code]
$(document).ready(function() {
$('#example').dataTable( {
"aoColumnDefs": [
{
// `data` refers to the data for the cell (defined by `mData`, which
// defaults to the column being worked with, in this case is the first
// Using `row[0]` is equivalent.
"mRender": function ( data, type, row ) {
return '
show these for only admins
';
},
"aTargets": [ 0 ]
}
]
} );
} );
[/code]
I need to know if the security tag inside mRender function is properly rendered as html and working correctly.
Thank you.
I have this code:
[code]
$(document).ready(function() {
$('#example').dataTable( {
"aoColumnDefs": [
{
// `data` refers to the data for the cell (defined by `mData`, which
// defaults to the column being worked with, in this case is the first
// Using `row[0]` is equivalent.
"mRender": function ( data, type, row ) {
return '
show these for only admins
';
},
"aTargets": [ 0 ]
}
]
} );
} );
[/code]
I need to know if the security tag inside mRender function is properly rendered as html and working correctly.
Thank you.
This discussion has been closed.
Replies
Allan
Allan