Domanda

I want to way to add date and time as a simpleform field. Based on the simpleform documentation I was trying

  <%= f.datetime select :time, :as => :datetime %>

but I am receiving an "Argument Error in Houses#new".

È stato utile?

Soluzione

Can you be more specific about what "doesn't work" means? Raises an error? Or doesn't render the expected input?

I'd guess this should look more like:

f.input :time, :as => :datetime
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top