How to exclude dropdown select options from pdf
How to exclude dropdown select options from pdf
nilakshibhosale
Posts: 7Questions: 2Answers: 0
I have included dropdown to each column at header, while generating pdf its containing all the options in header,
how can I avoide it?
https://jsfiddle.net/nilakshibhosale/4skdq2r3/2/
This discussion has been closed.
Replies
this is the actual link
https://jsfiddle.net/nilakshibhosale/4skdq2r3/5/
I got the solutions,
exportOptions: {
format: {
header: function ( data, column, row )
{
return data.substring(data.indexOf("value")+9,data.indexOf("
</option"));
}
}
},
Hi @nilakshibhosale ,
Am I correct in assuming you resolved this in this thread. It looks like your link in your previous comment is working as expected?
Cheers,
Colin