How can I implement the inheritance of the layout of the dataTable when printing
How can I implement the inheritance of the layout of the dataTable when printing
pagawa
Posts: 5Questions: 3Answers: 0
I have columns containing combination of 2 or more values. I used this function to combine these values into 1 column
{"mData": function (data, type, dataToSet) {
return data.ticket.accountName + " <br>" + data.ticket.address + " <br>" + data.ticket.accountNumber + " " + data.ticket.meterNumber + " <br>" + data.ticket.contactNumber;
}},
The layout is working in dataTables but when I print the dataTable, the "<br>" is removed making the layout destroyed
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Hi @pagawa ,
See this thread, there's a solution there.
Cheers,
Colin
Thanks, @colin