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!
Answers
Yes, you will want to remove the render function. Looks like all you need is to add
defaultContent: '',to eithercolumns.dataorcolumnDefs. For example:Update the example:
http://live.datatables.net/vinipiye/3/edit
Kevin
Works like a charm! Thanks Kevin!