1

我有用于导出 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>');
4

1 回答 1

0

尝试添加:

"fnDrawCallback": function( oSettings ) {
   createListTableActions();
}
于 2013-07-15T00:37:16.080 回答