Pdf and xls not working on data table

Pdf and xls not working on data table

chpkchpk Posts: 4Questions: 0Answers: 0
edited November 2012 in DataTables 1.9
Pdf and xls not working on data table....
i am using the following code
"sDom": 'T<"clear">lfrtip',
"aButtons": [

"xls",
{
"sExtends": "pdf",
"sPdfSize": "letter"
}

]

it is creating only buttons but there is no action while i clicking...
can anyone help me please...

Replies

  • allanallan Posts: 63,089Questions: 1Answers: 10,387 Site admin
    Please provide a link to the page as noted in the 'New Dicussion' instructions.

    Allan
  • chpkchpk Posts: 4Questions: 0Answers: 0
    i downloaded copy_csv_xls_pdf.swf from some website. then i generated the following code...

    buttons are created but pdf or excel not creating...

    var oTable = $(tablename).dataTable({
    "bJQueryUI": true,
    "sPaginationType": "full_numbers",

    "sDom": 'T<"clear">lfrtip',
    "sAjaxSource": "<%=Request.ApplicationPath%>/Company/Services/employeeregistration.asmx/GetEmployeeDetails",
    "aoColumns": [
    { "mDataProp": "Id" },
    { "mDataProp": "emp_empcode" },
    { "mDataProp": "emp_firstname" },
    { "mDataProp": "empdepartment" },
    { "mDataProp": "empdesignation" }],

    "sDom": 'T<"clear">lfrtip',
    "oTableTools": {
    "sSwfPath": "<%=Request.ApplicationPath%>/Media/swf/copy_csv_xls_pdf.swf"

    }
    });

    this is the above code link.....

    http://jsfiddle.net/ZCV6W/1/
This discussion has been closed.