How to to export hidden columns to PDF file?
How to to export hidden columns to PDF file?
![borstate](https://secure.gravatar.com/avatar/10ffda08fb19cda91ef8e7f0d21c71c3/?default=https%3A%2F%2Fvanillicon.com%2F10ffda08fb19cda91ef8e7f0d21c71c3_200.png&rating=g&size=120)
It works fine with xls file using
"sExtends": "xls",
"mColumns": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10] (where [10] is hidden)
in PDF column [10] is overwritten and messed up.
PDF displays properly only visible columns
Here is snippet where I setup column [10] is not visible
"aoColumnDefs": [
{
"bVisible": false, "aTargets": [10]
}
]
Thank you in advance.
This discussion has been closed.