You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 17, 2019. It is now read-only.
Hi,
Can anyone help me how to initialize datatable with complex options like this.
oTable = $('#AttributesList-table').dataTable({
"aoColumnDefs": [
{
"aTargets": [ '_all' ],
"mRender": function ( data, type, full ) {
if(data!=null)
{
return '
'+data+'
';
}
else
{
return '';
}
}
}
]
});
Actually I want to wrap cell data with
tag.
The text was updated successfully, but these errors were encountered:
Hi,
Can anyone help me how to initialize datatable with complex options like this.
oTable = $('#AttributesList-table').dataTable({
"aoColumnDefs": [
{
"aTargets": [ '_all' ],
"mRender": function ( data, type, full ) {
if(data!=null)
{
return '
}
else
{
return '';
}
}
}
]
});
Actually I want to wrap cell data with
The text was updated successfully, but these errors were encountered: