Displaying 2 results from an estimated 2 matches for "create_products".
Did you mean:
  create_product
  
2006 Jan 28
0
Auto drop list: Create a form professional or easy?
Hi all,
I''m searching for a method to dynamically build a form. ( false/true field in 
the DB should automatically be a droplist)
If you use "_form.rhtml" it works easy, with only this code in your partial, 
but uses the extra file, and doesn''t feel profi and flexible.
<%= start_form_tag :action => ''create_product'' %>
  <%= render
2006 Jan 24
7
formatting numbers with commas
I needed to format numbers with commas to make it more human  
readable. Here''s how I did it.
def commify(number)
     c = { :value => "", :length => 0 }
     r = number.to_s.reverse.split("").inject(c) do |t, e|
       iv, il = t[:value], t[:length]
       iv += '','' if il % 3 == 0 && il != 0
       { :value => iv + e, :length =>