search for: 004_create_products

Displaying 1 result from an estimated 1 matches for "004_create_products".

Did you mean: 001_create_products
2007 Nov 27
3
Disappearing decimals... please help!
...aybe it''s all in my head, but I''m having the strangest little issue ever. My pricetags in my rails app are always whole numbers. Rails seems to completely ignore my decimal input. So as a consequence, 10.41 becomes 10.00, always. Here''s some worthwhile stuff: within my 004_create_products.rb file: :price, :decimal, :percision => 2, :default => 0 And calling the product price in a view: <%= number_to_currency(product.price, {:precision => 2}) %> That''s all I can really think of that could be of help. Is this all in my head, or am I retarded and missing som...