Setting title in excelhtml5

Setting title in excelhtml5

y060121y060121 Posts: 4Questions: 2Answers: 0
edited November 2015 in Free community support

How to setup a title in excelhtml5 export, title is working correctly in pdfhtml5 export, but not working in excelhtml5, any help here pls. My code below,
thank you.

   $(document).ready(function() {
   $('#export').DataTable( {

    dom: 'Bfrtip',      
    buttons: [            
         {
            extend: 'excelHtml5',
            title: 'Report'
         },
        {
            extend: 'pdfHtml5',
            title: 'export'
        },
        {
            extend:'print'              
        }

    ]
} );
} );
This discussion has been closed.