我有用于导出 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>');
}
相同的链接在页面中工作,但不是来自 Jquery 对话框。
$("div.actions").append('<a id="excelExport" class="actionButton" alt="Export to Excel" title="Export to Excel" href="pexport"></a>');