export Excel のカスタム アクションを含むデータテーブルがありますが、これらのアクションは to struts アクション クラスを起動しません。
var oTable = $("#products").dataTable({
"aaData": newarray,
"bProcessing": true,
"bDeferRender": true,
"bFilter": false,
"bRetrieve": true,
"bPaginate": true,
"bJQueryUI": true,
"sPaginationType": "two_button",
"sDom": '<"top"<"actions">lfpi<"clear">><"clear">rt<"bottom">',
"bSort": true
});
function createTableActions(){
$("div.actions").append('<a id="excelExport" class="actionButton" alt="Export to Excel" title="Export to Excel" href="pexport"></a>');
}
JSFIDDLEのすべてのコードを参照してください
Jqueryダイアログからではなく、ページで機能する同じリンク。
$("div.actions").append('<a id="excelExport" class="actionButton" alt="Export to Excel" title="Export to Excel" href="pexport"></a>');