1

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>');
4

1 に答える 1

0

追加してみてください:

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