Lamer Lamer wrote:
> view
> <%= select( :order, :hcins, { "Man" => 3, "Is" => 5}) %>
> (hcins is string value)
>
> controller (order)
>
> def create
>
> @order =Order.new(params[:order])
>
> @order.user = User.find(session[:user_id])
>
> @order.ucret= @order.hcins.to_d * @order.hboy
>
> if @order.save
> redirect_to :controller=>"user",:action =>'index'
> flash[:notice] = "Completed"
> else
> flash[:notice] = "Problem
> end
>
> end
>
> when I submit the form "hcins" gets "3 or 5" but I like to get text of
> selection("man" or "is") for "hcins" and values for "ucret" calculation.
>
> how should I do it?
Did you try ...
<%= select( :order, :hcins, [["Man", 3], ["Is", 5]]) %>
~Jeremy
--
Posted via http://www.ruby-forum.com/.
--
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.