Displaying 2 results from an estimated 2 matches for "labouriously".
Did you mean:
laboriously
2006 Jan 12
2
Easy to Access Telephone Directory AGI
I've written myself a easy to use telephone directory
which I use at home and thought it may be of interrest
to others.
The purpose of this agi script is to provide an online
telephone directory that can be easily accessed using
the numbers on the phone dial pad.
You select entries by spelling out the name of the
person you want to contact using the phone dial pad.
Now this is normally
2005 Oct 26
1
acts_as_tree parent id problem
...nding the appropriate category
and using that.
I''m using the scaffolding at the moment, so the code looks like:
@category = Category.new(params[:category])
I know that there must be a way of easily assigning all the values in
the params hash, and looking up the correct parent, without labouriously
assigning each value manually ie
@category.name = params[:category][:name]
...
@category.parent = Category.find(params[:category][:parent]
...
...
So any ideas?
Kev