0

有什么方法可以用 jquery 数据表制作可滚动的内容吗?

这是我的脚本:

oTable = $('#tablex').dataTable
    ({
        "sDom": "<'scrollContent't>T<'fg-toolbar ui-widget-header ui-corner-tl ui-corner-tr ui-helper-clearfix'lfr>t<'fg-toolbar ui-widget-header ui-corner-bl ui-corner-br ui-helper-clearfix'ip>",
        "bJQueryUI": true,
        "aoColumns": [
        null,
        null,
        { "sType": "formatted-num" },
        { "sType": "formatted-num" },
        { "sType": "formatted-num" },
        { "sType": "num-html" },
        { "sType": "num-html" }],
        "aLengthMenu": [[10, 15, -1], [10, 15, "All"]],
        "fnRowCallback": function( nRow, aData, iDisplayIndex, iDisplayIndexFull ) {
        /* Bold the grade for all 'A' grade browsers */
            var index = iDisplayIndex +1;
            $('td:eq(0)',nRow).html(index);
            return nRow;
        }
    });

当我在 Firefox 3.6.19 中尝试它时,它似乎工作正常,但是当我在 Firefox 5.0.1 中尝试它时,它不起作用@.@ 我的脚本有什么问题吗?也许有人可以帮助我?谢谢..

4

1 回答 1

1

Datatables 提供了一种设置可滚动内容大小的方法...

"sScrollY": "200px",

http://www.datatables.net/examples/basic_init/scroll_y.html

于 2011-07-31T06:46:43.870 回答