2011-01-13 92 views
0

創建幫手,我嘗試以下狙擊成幫手變換:在軌道3

<%= f.autocomplete_field :profissao_nome, 
       autocomplete_profissao_nome_pacientes_path, 
       :value => (@item.profissao.nome if @item.profissao), 
       :id_element => "#paciente_profissao_id", :class => 'element text search-modal'%> 
      <%= f.text_field :profissao_id, :type => "text" %> 
      <%= link_to "", search_profissaos_path, :class=>"iframe", :anchorDescription => "paciente_profissao_nome", :anchorId => "paciente_profissao_id" %> 

但是,我所有的嘗試失敗。即使我得到相同的html輸出,「id_element」的行爲也不起作用。

def lookup_field(object_name, method, source, options ={}) 

    autocomplete_field(object_name, method, source, options) + "\n" + 
    text_field(object_name, "religiao_id", {:type => "text"}) + "\n" + 
    link_to("", eval("search_religiaos_path"), :anchorDescription=>object_name.to_s+"_religiao_nome", :anchorId=>object_name.to_s+"_religiao_id", :class => "iframe") end 
    end 

回答

0

請確保您將表單構建器對象f傳遞給您的方法。