足够的分页使用苗条不能正常工作

时间:2016-01-30 06:56:09

标签: ruby-on-rails pagination jquery-ui-sortable slim-lang footable

我正在使用footable作为索引页面,我使用的是简单的html内容,但是当我点击排序图标时,页脚数量会增加,这会使页面数量增加。

wrapper.wrapper-content.animated.fadeInRight
  .row
    .col-lg-12
      .ibox.float-e-margins
        .ibox-title
         h5 List of Organizations
        .ibox-content  
          table class="footable table table-stripped" data-page-size="10" 
           thead
            tr
             th Organization
             th Type
           tbody
            - @organizations.each do |f|
             tr
              td= f.name
              td= f.type   
           tfoot
            tr
             td colspan="2"
              ul class="pagination pull-right"
javascript:
$(function() {
$('.footable').footable();
});

点击排序图标之前 enter image description here 点击排序图标后 enter image description here

我做错了什么,请提前通知我。

2 个答案:

答案 0 :(得分:1)

您应该为这些行添加意图

javascript:
  $(function() {
  $('.footable').footable();
  });

答案 1 :(得分:1)

wrapper.wrapper-content.animated.fadeInRight
  .row
    .col-lg-12
      .ibox.float-e-margins
        .ibox-title
         h5 List of Organizations
        .ibox-content  
          table class="footable table table-stripped" data-page-size="10" 
           thead
            tr
             th Organization
             th Type
           tbody
            - @organizations.each do |f|
             tr
              td= f.name
              td= f.type   
           tfoot
            tr
             td colspan="2"
              ul class="pagination pull-right"
javascript:
  $(function() {
  $('.footable').footable();
  });