search for: h9lrgznmpqmavxtiumwx3w

Displaying 3 results from an estimated 3 matches for "h9lrgznmpqmavxtiumwx3w".

2007 Apr 27
3
attachment_fu content_type problem
Hi all.... Admittedly I''m new to Rails and trying to find my way but I''m having an issue with uploading documents with attachment_fu. I have a form where I''m uploading multiple attachments (using AJAX to add file_filed_tags). That seems to work pretty well. The problem is I can''t seem to get the content_type to work as I would expect. For example, if I use
2007 Aug 10
0
ActionMailer::Base
As part of testing/learning, I''m trying to create a my class based on the ActionMailer::Base object in the script/console and calling methods I added. I can call the receive method but I can not call any of my other methods. If I run this, IncomingMsgHandler.methods at the console I don''t see my new methods listed. I have closed and restarted the console session thinking maybe
2008 Sep 06
6
Active record question
I''m not quite sure how to get at this data using Actrive record.. I''m trying to get all the appointments made for a particular project. I''m using four models, Projects, Tasks, Resources and Appointments. The SQL gets me what I''m looking for but how do I do it using Active Record? Select a.* from appointments a join resources r on r.id = a.resource_id join