2

エクスポート ボタンに問題があります。最初の jQuery テーブルでのみ機能しますが、他のテーブルでは機能しません。

入れるべきものはすべて入れました。

2 つの jqueryTabs の例を次に示します。

var jQuery2 = jQuery.noConflict();
jQuery2(document).ready(function() {

    jQuery2('#t1').dataTable( {
        "bJQueryUI": true,
        "bScrollCollapse": true,
        "sDom": 'T<"clear">lfrtip',

        "oTableTools": {
            "aButtons": [
                "copy",
                "csv",
                "xls",
                {
                    "sExtends": "pdf",
                    "sPdfOrientation":"landscape",
                    "sPdfMessage": "Your custom message would go here."
                },
                "print"
            ]
        }
    });
    jQuery2('#t2').dataTable( {
        "bJQueryUI": true,
        "bScrollCollapse": true,
        "sDom": 'T<"clear">lfrtip',
        "oTableTools": {
            "aButtons": [
                "copy",
                "csv",
                "xls",
                {
                    "sExtends": "pdf","sPdfOrientation": "landscape",
                    "sPdfMessage": "Your custom message would go here."
                },
                "print"
            ]
        }
    } );

});
4

1 に答える 1

0

両方のテーブルに jQuery2 変数を使用せずに、データテーブルを個別に呼び出すことをお勧めします。

 $(document).ready(function() {
      $('#t1').dataTable( { ... });
      $('#t2').dataTable( { ... });
 });
于 2013-01-22T20:27:47.040 に答える