Displaying 4 results from an estimated 4 matches for "fr_arr".
Did you mean:
fr_arg
2008 Feb 26
0
[ADV] Updated Advanced Rails Recipes PDF
Hi Folks,
We''ve just uploaded the third beta revision of the Advanced Rails
Recipes PDF:
http://pragprog.com/titles/fr_arr
To get your updated PDF, simply sign in to your account (http://
pragprog.com/my_account) and ask the system to regenerate it.
This revision adds 14 new recipes (81 total) from some of the top
developers in the community:
* Process Recurring Credit Card Payments
* Support An iPhone Interface
* S...
2012 Jul 14
0
Adding to an association from a long list of items
...o communicate the user''s selection back to the original calling
controller. Also, a pop-up window might not be the best user experience.
I''ve been searching for any tips on handling this situation. All I''ve found
is this Rails Recipe<http://media.pragprog.com/titles/fr_arr/multiple_models_one_form.pdf>,
which is very close to what I''m trying to do, but unfortunately it doesn''t
show how to pick an item from a potentially large table.
Can anyone point me to an example or give me some idea of how to implement
this? Thanks!
--
You received this...
2009 Oct 06
1
Problems Processing multiple form elements generated by javascript actions
...orking, but I''m hitting a wall with a few bugs
that I can''t figure out. Guidance would be very much appreciated.
I''m using the Ryan Bates technique from Advanced Rails recipes to
dynamically add and remove elements on a multi-model form.
http://media.pragprog.com/titles/fr_arr/multiple_models_one_form.pdf
I have 3 models: users, schedules and markets.
Users
has_many :schedules
has_many :markets, :through => :schedules
Markets
has_many :schedules
has_many :users, :through => :schedules
Schedules
belongs_to :users
belongs_to :markets
Schedules has columns user_id...
2009 Dec 25
18
rescue_from ActionController::RoutingError II
OK ... so I''m not supposed to use it but ...
Why doesn''t rescue_from ActionController::RoutingError work witht he
code from
http://www.rubyplus.org/episodes/20-Extended-RESTful-Authentication-Rails-2-App.html
class ApplicationController < ActionController::Base
helper :all # include all helpers, all the time
# See ActionController::RequestForgeryProtection for details