Hi this is my table structure:
create_table "items", :force => true do |t|
t.string "name", :limit => 30
t.integer "quantity", :default => 0, :null =>
false
t.integer "price", :default => 0, :null =>
false
end
I have a simple table in my index view shows the values of this table.
def index
@items = Item.find(:all)
end
Now i want to use a slider control (script.aculo.us?) based on the
values of columnname''s > "quantity" and "price".
has someone examples of a some rails code of links ??
swoany
--
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
rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---