gpt4 book ai didi

javascript - 为什么 Footable 分页无法正确呈现?

转载 作者:搜寻专家 更新时间:2023-11-01 04:51:54 25 4
gpt4 key购买 nike

我正在尝试实现 Footable,这是一个用于使表格响应的 JQuery 插件。 Footable 有一个附加组件可以添加分页。 [演示]

和 ( http://fooplugins.com/footable/demos/paging.htm ) 用于使用分页插件。我尝试按照这个演示进行操作,但我的分页显示为垂直无序列表。这些按钮很实用,但不美观。 Here是一个链接图片,我不能在这里发布,因为我的声誉不够高。

这是我的表格代码:

<table class="table table-hover" ng-show='form.length>0' data-page-navigation=".pagination">
<thead>
<th ng-repeat="(key, formAttr) in form | orderBy:'attributes.order'" >{{formAttr.attributes.name}}<br/>({{formAttr.type}})</th>
<th>Submission Time</th>
</thead>
<tbody>
<tr ng-repeat="(key, response) in formResponses">
<td ng-repeat="(key, formAttr) in form | orderBy:'attributes.order'">{{$parent.response.results[formAttr.att_id]}}</td>
<td>{{response.submission_time}}</td>
</tr>
</tbody>
<tfoot class="">
<tr>
<td colspan="5">
<div class="pagination pagination-centered"></div>
</td>
</tr>
</tfoot>
</table>

最佳答案

您的页脚应如下所示:

<tfoot class="hide-if-no-paging">
<tr>
<td colspan="5" class="text-center">
<ul class="pagination">
</ul>
</td>
</tr>
</tfoot>

您可以看出,这与演示中所说的不同。此链接向我展示了差异 https://github.com/bradvin/FooTable/issues/136 .

这里有一段代码可以说明这个问题:http://plnkr.co/edit/8Yyk8NN8rsqdXtrvJDOM

关于javascript - 为什么 Footable 分页无法正确呈现?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24472410/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com