Title PDF
Title PDF
fasme2h
Posts: 1Questions: 0Answers: 0
Hi,
how can add a title in a pdf file?
i tried this way
[code]
$(document).ready( function () {
$('#example').dataTable( {
"sDom": 'T<"clear">lfrtip',
"oTableTools": {
"aButtons": [
{
"sExtends": "pdf",
"fnClick": function( nButton, oConfig, flash ) {
this.fnSetText( flash,
"title:My document\n"+
"colWidth:"+ this.fnCalcColRatios(oConfig) +"\n"+
"--/TableToolsOpts--\n" +
this.fnGetTableData(oConfig)
);
}
}
]
}
} );
} );
[/code]
how can add a title in a pdf file?
i tried this way
[code]
$(document).ready( function () {
$('#example').dataTable( {
"sDom": 'T<"clear">lfrtip',
"oTableTools": {
"aButtons": [
{
"sExtends": "pdf",
"fnClick": function( nButton, oConfig, flash ) {
this.fnSetText( flash,
"title:My document\n"+
"colWidth:"+ this.fnCalcColRatios(oConfig) +"\n"+
"--/TableToolsOpts--\n" +
this.fnGetTableData(oConfig)
);
}
}
]
}
} );
} );
[/code]
This discussion has been closed.
Replies
Allan
Can we use fnCalcColRatios in all other options for proper column width and text alignment.