search for: 1oxkqhkwyltbdgjk7y7tuq

Displaying 9 results from an estimated 9 matches for "1oxkqhkwyltbdgjk7y7tuq".

2008 Sep 01
2
Help with link_To
Hi, I need some help!! I have to make a link_to with a string to have that strin in another controlle who can i do it?? i have something like this <%= link_to ''Buscador'', new_consulta_path, :query=>"rssnews" %> and then in the controller consulta params[:query] -- Felipe Vergara Contesse IngenierĂ­a Civil Industrial UC
2008 Jul 02
3
attachment in mail
How to do the attachment in mail like the yahoo and gmail does? --~--~---------~--~----~------------~-------~--~----~ 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
2008 Jul 17
2
Final Opinion :: Need final opinions on the best way to handle arrays in forms
Hi There, rails noob just trying to suss a few things out. So I have 2 tables. 1 called Posts and the other called comments. On one page I need to be able to edit both the information about the post and the attributes of each comment for that post. So here is what the array might look like: (Inside the params hash) "post" => [ {"id"=>28, "title" =>
2008 Jul 04
2
How do change catalog before catalog is delted?
In my rails application,there are two models:post and catalog. One post has a catalog,and one catalog has many posts. When I delete a catalog,the posts belongs to the catalog will not be shown normal,for it''s catalog is no existed. Now I want to create(if the ''Defalut catalog'' is not existed) a ''Defalut catalog'' in catalogs table,and make the
2008 Jun 25
5
Symfony like "forward404"
Hi community, as I''m a previous PHP and especially symfony programmer, I often try to find features of symfony in rails. Now I''m looking for a method which forwards to a 404 error page (but with stack trace and so on in development mode). I tried to manually render public/404.html, but if I do so, I miss the stack trace. Is there a method like this or are rails programmers using
2008 Dec 08
3
Database calls in my views?
I am working on re-factoring my admittedly ambitious employee management Rails app that I created for work. The good news is, my first major version went over like a dream(With no small amount of thanks due to the community and the support)! All of the functionality the bosses dreamed of! The bad news? It''s REALLY SLOW. So I rolled up my sleeves and have been working on some re-writes
2008 Jun 19
6
How to use SQL without a model?
I want to do a SQL query, but I haven''t created a model. For example, instead of Car.find(:all) I want to be able to use SELECT * from cars. I don''t have a Car model because this DB was not created with Rails (it''s from a PHP project). -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you
2008 Jun 19
2
any news about swfupload & sessions?
Hi all, I''m up to rewrite my swfupload code as a plugin (as far as possible). My actual solution to the old problem with session handling and flash was to ignore it, send an upload_request to the server, get back some secret code and then upload the file to an action where session/ authentication is disabled. Works fine so far, but the normal way would be better. There are many
2008 Jul 22
0
Re: submitting form_remote_tag with text button?
I don''t have the time to check the details myself, but have a look at the generated html. You''ll find, that fom_remote_tag generates an onsubmit event handler for the form. Either take that code or invoke the onsubmit event. (I would have thought that happens, when you call form.submit, but never trust javascript ;-) --~--~---------~--~----~------------~-------~--~----~ You