带有可动态表的未定义单元格值

时间:2018-01-31 12:26:08

标签: dynatable

我尝试使用dynatable创建一个交互式表格。我按照文档说明进行操作,但我仍然没有得到" undefined"在两列的所有值中。我相信data-dynatable-ignore="true"无效,我想知道正确的方法。

HTML:

 <table id="example" cellspacing="0" width="100%" class="dynatable table table-condensed table-hover table-striped table-bordered">
                    <thead>
                        <tr>
                            <th rowspan="2" data-dynatable-column="Unidade">Unidade</th>
                            <th rowspan="2" data-dynatable-column="Meta">Meta</th>
                            <th colspan="2" data-dynatable-ignore="true">Inclusão</th>
                            <th colspan="2" data-dynatable-ignore="true">Confirmação</th>
                        </tr>
                        <tr>
                            <th data-dynatable-column="ValorI">Valor</th>
                            <th data-dynatable-column="%I">%</th>
                            <th data-dynatable-column="ValorC">Valor</th>
                            <th data-dynatable-column="%C">%</th>
                        </tr>
                    </thead>
                </table>

JS:

$('#example').dynatable({
        features: {
            paginate: false,
            sort: true,
            pushState: false,
            search: false,
            recordCount: false,
            perPageSelect: false
        },
            dataset: {
                ajax: true,
                ajaxUrl:  'https://api.myjson.com/bins/n4ecd',
                ajaxOnLoad: true,
                records: []
            }
        });

JSFIDDLE:https://jsfiddle.net/pvviana/fw69uLus/

1 个答案:

答案 0 :(得分:1)

浪费了几个小时阅读可动态文档documentation后,我注意到它还不存在。所以我继续前进Datatables,我已经创造了我想要的东西。

我希望dynatable能尽快改善你的发展可能性。