jQuery dataTables(服务器端)呈现问题

时间:2013-02-20 11:10:11

标签: jquery jquery-datatables

我正在尝试从网址http://www.datatables.net/examples/data_sources/server_side.html实施DataTable。我在Visualforce apex(Salesforce)中开发它。以下是我的代码

/*$(document).ready(function() {
            $.ajax({
                type: "POST",
                url: "/apex/HotStuckLeadReportAjaxPage",
                data: { name: "John", location: "Boston" }
                }).done(function( msg ) {
                    alert("Data Saved: " + msg );
                });
       });*/
        //$.noConflict();
        $(document).ready(function() {
            $('#example').dataTable( {
                "bProcessing": true,
                "bServerSide": true,
                "sAjaxSource": "/apex/HotStuckLeadReportAjaxPage"
            } );

        });

当我解开顶级Ajax函数时,它显示 [Object Object] 作为响应。但是,当我单独运行 HotStuckLeadReportAjaxPage 页面时,它会以JSON格式显示文本在“sAjaxSource”中DataTable所期望的内容:表中没有数据呈现。有什么问题? 当我跑步时,我总是一次打开任何一个jquery Ready功能。 感谢。

0 个答案:

没有答案