0

手伝ってもらえますか?

   <table id="myTable">
                    <thead>
                        <tr/>
                    </thead>
<tbody/>
                </table> 



    "bJQueryUI": false,
    "bProcessing": false,
    "bServerSide": true,
    "bFilter": true,
    "bAutoWidth": false,
    "bDeferRender": true,
    "bScrollCollapse": true,
    "oScroller": {
        serverWait: true
    },
    "bInfo": true,
    "aaSorting": [
        [1, 'asc']
    ], // Default first column sort
    "sDom": 'tiS',

スクロール中、テーブルはサイズ変更を続けます

4

1 に答える 1

0

あなたのテーブル構造はデータテーブルに従って丸くなっていると思います。次のようなテーブルを作成してみてください:

<table class="display" id="example">
    <thead>
        <tr>
            <th>Title 1</th>
            <th>Title 2</th>
            <th>Title 3</th>
        </tr>
    </thead>
    <tbody>
         <tr>
            <td>Res 1</td>
            <td>Res 2</td>
            <td>Res 3</td>
         </tr>
    </tbody>
</table>

必要に応じて、設定できません <tfoot>

これを試してみて、動作する場合は、$("#example").dataTable({...});.

于 2012-07-05T18:57:21.550 に答える