I'm attempting to setup a form for a model that contains a select box populated from a collection in the hash.
Specifically, my employee model has a hash of roles:
ROLES = {1 => "Lead", 2 => "Engineer", 3 => "Intern" }
And a validator:
validates_presence_of :role
Ideally, I'd like to populate a select box in a form using this information. Something such as :
<%= form_for @employee do |f| %>
<%= label_tag :role, "Role" %>
<%= f.select :employee, :role, Employee::ROLES %>
<% end %>
Although I can display the values in the select box, the data isn't serialized. Instead, I receive the validation message that the "Role can't be blank."
My controller's create method looks like this:
def create
@employee = Employee.new(params[:employee])
if @employee.save
redirect_to employees_path, :notice => "Successfully created a new employee."
else
render :action => 'new'
end
end
Ultimately, my question is how do I populate the select box using the hash in the model and properly save the value of the select box to the column on the employee model in the database?