Pdf and xls not working on data table
Pdf and xls not working on data table
chpk
Posts: 4Questions: 0Answers: 0
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...
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...
This discussion has been closed.
Replies
Allan
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/