2

我想在 Active Admin Dashboard 页面上为我的几个模型添加搜索功能。我怎么做?

对于常规模型,我可以使用“过滤器”来做到这一点,但我如何在仪表板视图中做到这一点。section 和 ActiveAdmin::Dashboards.build 中有哪些可用的方法?

4

1 回答 1

9

添加我是如何做到的(遵循 Sjors 的建议),以便其他人可能会发现它有用:

在dashboards.rb 中:

  section "Search User", :priority => 4 do
    div do
      render "search_user"
    end
  end

在views/admin/dashboard/_search_user.html.erb(使用firebug复制的用户过滤器的HTML):

<div class="panel_contents">
  <form method="get" id="q_search" class="filter_form" action="/admin/users" accept-charset="UTF-8">
    <div class="filter_form_field filter_string">
      <label for="q_email" class=" label">Search Email:</label>
      <input type="text" name="q[email_contains]" id="q_email" />
      <input type="submit" value="Go" name="commit" id="q_submit" />
    </div>
  </form>
</div>
于 2012-04-23T15:37:34.060 回答