Yes, you will want to remove the render function. Looks like all you need is to add defaultContent: '', to either columns.data or columnDefs. For example:
defaultContent: '',
columns.data
columnDefs
{defaultContent: '', orderable: false, className: 'select-checkbox', targets: 0 },
Update the example: http://live.datatables.net/vinipiye/3/edit
Kevin
Works like a charm! Thanks Kevin!
It looks like you're new here. If you want to get involved, click one of these buttons!
Answers
Yes, you will want to remove the render function. Looks like all you need is to add
defaultContent: '',
to eithercolumns.data
orcolumnDefs
. For example:Update the example:
http://live.datatables.net/vinipiye/3/edit
Kevin
Works like a charm! Thanks Kevin!