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

pagawapagawa Posts: 5Questions: 3Answers: 0
edited October 2018 in Free community support

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 + "&emsp;" + 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

Answers

This discussion has been closed.