如何使用Footable&创建多个标题行AJAX

时间:2015-05-12 14:25:34

标签: footable

我想创建具有多个标题行的footables,并且没有运气这样做。我正在使用Web服务/ json的组合来从SQL数据库中提取我的标头和数据。

下面的代码效果很好,但显然只生成一个标题行:

        function loadTable() {
            $('#eocScreen').footable({
                ajaxEnabled: true,
                sorting: {
                    enabled: false
                },
                paging: {
                    enabled: false,
                    total: rowData.length,
                    size: 15,
                    current: parseInt(FooTable.utils.getURLParameter('page')) || 1
                },
                filtering: {
                    enabled: false
                },
                //columns: colIndex,
                columns: { 
                    0: {name: 'locationName', title: 'school' },
                    1: { name: 'graduate', title: 'Number of Graduates' }
                },
                ajax: FAjax.request
            })
        }

我已经尝试了各种方法来添加第二行,但我现在还没有足够的技巧来解决这个问题......我尝试过的几件事情是:

                columns: { 
                    0: {name: 'locationName', title: 'school' },
                    1: { name: 'graduate', title: 'Number of Graduates' }
                }
                {                    
                0: { title: 'loc' },
                    1: { title: 'seniors' }
                },


                columns: [{ 
                    0: {name: 'locationName', title: 'school' },
                    1: { name: 'graduate', title: 'Number of Graduates' }
                },
                {                    
                0: { title: 'loc' },
                    1: { title: 'seniors' }
                }],

非常感谢任何帮助!!

0 个答案:

没有答案