I create a datatable in angular with help of this package. I want to full empty colums with "-".
Suppose that i have a datatable like this
I want to detect empty columns and fill it with default content. I found defaultContent property but doesn´t work.
So the question is: Using this package how can i fill it empty columns with "-" string?
UPDATE: Add defaultContent. No works.
this.dtOptions = {
order: [[0, "desc"]],
pagingType: "full_numbers",
pageLength: 10,
sScrollX: "100%",
responsive: true,
processing: true,
searching: true,
defaultContent: "-", //I TRY THIS
language: {...}
}
