search for: om76b2iv3ylqjuslxsepgw

Displaying 4 results from an estimated 4 matches for "om76b2iv3ylqjuslxsepgw".

2005 Feb 16
4
Beginners Question
I''m just picking up rails...I''ve got a few questions. First, I''d like to get some input and parrot it back. I''m trying the following in my .rhtml file but it isn''t working. What am I missing here? <html> <head> <title>Search</title> </head> <body> <h1>Search for Filings</h1> <p> Use this page to
2005 Apr 16
2
Authorization
Hi, Maybe I ask again for something what is wasn''t able to find anything. Is there simple way how to process authorizations? My imagine is that some action for controllers are allowed only to few users. E. g. Everybody can look category list, but only registred user can edit or add. In best way, when user is signup, rails will remember his rights like: adding_category = false
2005 May 03
2
How to put a form for one controller in another controlers view
Hello, If anyone could help me out with this problem I''d appreciate it... I''m making a database of event bookings, I have an events table and a clients table. I''d like to include a form to create a new client in the form for creating a new event. This would update the parent form with the new client_id using AJAX methods (see previous e-mail) so you''d
2005 Aug 20
6
How to find() only selected columns ?
Hello, I don''t know anything about Rails optimization, however... is it possible to select only specified columns in order to tell Active Record not to load everything from the table as does @items = Item.find(:all) ? Thank you