0
我有一個選擇框顯示所有我的行政官員,當我選擇一個行政長官時,它顯示政策通過彈出選擇。選擇框清理後得到問題
我的問題是選擇一個ejecutive並讓我的成績,我的選擇框始於第一ejecutive並沒有選擇ejecutive之後,似乎要清潔的選擇,我沒有
我的表
TABLE EJECUTIVES
|id| |name| |lastname1|
TABLE POLICIES
|id| |num_police| |ejecutive_id|
我的模型
class Policy < ActiveRecord::Base
unloadable
belongs_to :ejecutive
has_many :policy
def self.search(search)
if search
find(:all, :conditions => ["ejecutive_id = ? ", search.to_i ])
else
find(:all)
end
end
end
class Ejecutive < ActiveRecord::Base
has_many :policies
end
這裏是我的控制器
class PolicyManagement::PolicyController < ApplicationController
def generate_print_ejecutive_comercial
@ejecutives = Ejecutive.find(:all)
@policies = Policy.search(params[:search]).paginate(:page => params[:page], :per_page => 10)
end
end
這是我的看法
<% form_tag :controller=>"policy_management/policy",:action =>"generate_print_ejecutive_comercial", :method => 'get' do %>
<%= select_tag "search", options_for_select(@ejecutives.collect {|t| [t.name.to_s+" "+t.lastname1.to_s,t.id]}) %>
<%= submit_tag "Search", :name => nil %>
<% end %>
Results
<% @policies.each do |policy| %>
<p> <%= policy.num_policy%> </p>
<p> <%= policy.ejecutive.name %> </p>
<p> <%= policy.ejecutive.last_name %> </p>
<% end %>
<%= will_paginate @policies %>
是否有人知道這個問題嗎?我真的很感激幫助。
奇男子
select_tag
選定值!!!!!你真的做到了。 –你能幫我這個帖子? http://stackoverflow.com/questions/18936429/error-trying-to-download-using-filnename-format –
檢查出來...我覺得我知道你的應用程序喜歡我的手:) :) – tihom