1

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>

ただし、テーブルには最大 45 件のレコードが含まれているにもかかわらず、10 件しか表示されません (data-page-size を変更しても最大 10 件のレコードが表示されます)。

誰かがこの問題を見つけたら、助けてください。

4

1 に答える 1