search for: theaction

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

Did you mean: teaction
2006 Jan 26
2
link_to_remote > in :action , interrupt ajax to render a new page outside the :update div ?
...e :action to perform a complete reload of the page, outside of the div Actually, I havea a new page, but loaded inside the ":update" div. Someone have an idea please ? the rhtml: **** link_to_remote "yeah" , :update => "div" , :url => { :action => "theaction" } the rb: **** def theaction count -= 1 if count > 0 redirect_to :action "main" # to refresh all the page else render :partial => "..." # refresh inside div stuff end end
2004 Apr 13
2
Vonage goes to .ca
FYI http://www.itbusiness.ca/index.asp?theaction=61&sid=55298 did not like this by line in the story t"he CRTC has said it will likely regulate voice over IP the same as other phone services."
2006 Jul 26
3
adding class or id tags to tags like linkto and form
I''m trying to figure out things like this by myself so I don''t bother my developer and slow him down. How do I add class or id css attributes to tags like this: <%= form_remote_tag :url => { :action => "send_url" } %> <%= link_to_remote "My Profile URL", :url => { :action => "send_profile_url", :id => @user.id } %>
2007 Sep 06
3
routes, default_url_options and languages
Hello, My app is available in 2 languages, English (en) and French (fr). *I would like all my URLs to look like this :* /fr/companies /en/companies *I''ve setup this route :* map.connect '':lg/:controller/:action/:id'' I don''t want to specify the :lg parameter in every url_for calls. The language remains the same unless the params[:change_lg] is set. *In my