使用特定列的选择输入过滤表

时间:2016-02-05 08:07:42

标签: jquery ruby-on-rails select filter html-table

我有一个使用footable jquery插件实现分页和排序的表。现在我希望使用select输入过滤特定列。

以下是代码的一部分:

  table class="footable table table-stripped" data-page-size="10" data-filter="#filter" id="example"
   thead
    tr
     th Problem Name
     th Hospital
     th Status / here i want to filter with select input
     th Availablity Slot Start Time
     th Availablity Slot End Time
   tbody
    - @bookings.each do |book|
     tr class="gradeX"
      td=book.problem.name
      td=book.hospital
      /----some code----- 
javascript:
 $(function(){
  $('.footable').footable();
 });

我不知道如何实现它。 如何使用jquery过滤它们?帮我。

0 个答案:

没有答案