我想使用jquery jtable将数据导出到excel,我试过但我没有得到如何将数据导出到excel。
我已经在工具栏中提到了点击事件,在点击事件中我必须遵循的步骤请建议我。
$('#EmpDetResult').jtable({
title: 'Table of people',
paging: true,
toolbar: {
items: [{
tooltip: 'Click here to export this table to excel',
text: 'Export to Excel',
click: function () {
"EVENT HERE"
}
}]
},
actions: {
listAction: 'getResult.php?formName=afscpEmp&action=test',
updateAction:'getResult.php?formName=afscpEmp&action=test',
deleteAction:'getResult.php?formName=afscpEmp&action=test'
}
});
答案 0 :(得分:0)
toolbar: {
items: [{
Tooltip: 'Click here to export this table to excel',
//icon: '/images/paginate.gif',
text: 'Export to Excel',
click: function () {
window.location = 'getResult.php?formName=afscpEmp&action=export-excel';
e.preventDefault();
}
}]
},