我正在尝试在我的 rails 应用程序中使用 footable。但我无法使用我的动态表数据实现分页。
这是我的代码
<table class="footable table table-stripped" data-page-size="10" data-filter=#filter>
<thead>
<tr>
<th>Organization Name</th>
<th>Type</th>
</tr>
</thead>
<tbody>
<%@organizations.each do |org|%>
<tr class="gradeX">
<td><%=org.name%></td>
<td><%=org.type%></td>
</tr>
<%end%>
</tbody>
<tfoot>
<tr>
<td colspan="5">
<ul class="pagination pull-right">
<%=paginate @organizations%>
</ul>
</td>
</tr>
</tfoot>
</table>
<script type="text/javascript">
$(function() {
alert(); //testing
$('.footable').footable();
});
</script>
但是它只显示了 10 条记录,尽管它在表中最多包含 45 条记录(即使更改数据页大小也最多显示 10 条记录)。
帮助我如果有人发现这个问题,请提前谢谢。