similar to: Back Button Blues?

Displaying 20 results from an estimated 60000 matches similar to: "Back Button Blues?"

2006 Jan 12
12
Ajax Button Back function?
Hi Folks! I''m new in the forum and i have a doubt. The button back function with the Ajax on Rails? tks. -- Posted via http://www.ruby-forum.com/.
2006 Feb 28
1
support back button
There are a couple of links in the wiki about AJAX and the back button, but seem to be broken. I have a page with AJAXified tables and normal links. When the user modifies some table, follows a normal link, and presses the back button, the shown tables are the original ones (modifications are OK in backend). Is there some standard solution to this? -- fxn
2006 Jun 28
3
observe_field and radio button... does not work?
I try to catch click event on radio button, but nothing is executed.... Tested with RoR 1.1.2 and 1.1.3. What am I doing wrong? <%= radio_button_tag(:city, ''Dublin'') %> <%= observe_field(:citi, :frequency => 0.5, :on => ''click'', :with => "''city='' +
2006 Jul 21
1
Rails and IMAP
Hi everyone, I am wondering how well does RoR play with IMAP? I am asking because I have a small project to do where I to create an application where you can semi-automatically respond to email (click on a button to send a pre-made answer to that email). So my question is, how nicely does RoR play with IMAP? Is it a hassle and I need a bunch of plug-ins? Or do they play fairly nice? I
2006 Feb 13
0
file upload browse button triggers action
Hi, I''m new to RoR and I have a file upload form with file_field. Whenever I use the browse button to select the file name, my action (create) gets triggered. I only want the action to get triggered when the submit button is pressed. Is this possible or should I handle this in my create action, redisplaying the form if submit was not pressed How should this be done? Thanks in
2007 Mar 24
2
Why not giving every link, button etc. tag a unique id attr?
Hi all I''m playing around with Selenium IDE for creating automated acceptance tests for my RoR projects (very cool tool by the way). Often it''s the easiest way to pass a HTML-tag ID to Selenium to perform actions such as clicking on a link or submitting a form. Sadly Rails does not automatically create ID attrs for many tags like links or buttons. Has this a special reason? Or
2009 Jun 19
1
Session Reset when clicking back button of the browser
hi friends... here is my query.... kindly give ur views pls... after logging into the application,i redirect to company list page.now when user clicks the browser back button it should show the login page.that is i want to destroy the session.so in my login controller i have written code below. def log_in if request.get? reset_session end end in my routes.rb map.root :controller =>
2005 Aug 13
3
back button support
Hello, I was just wondering what clever ways all the Ajax developers out there have come up with to add back button support to their web apps. I have seen a couple different ways on the net, but neither of them look very complete. Ideally, I would like a solution where I could modify Ajax.Updater to keep track of which pages where loaded into which elements, then create a function like
2008 May 08
0
On 'Back' button of browser, drop down doesn't get refreshed
Hey guys, i have a drop down in my UI, which value gets filled by session[:sale]. <%= select_tag :sale_id, options_for_select([["Select Sale", "0"]] + @sales.collect { |s| [s.name, s.name] }, selected = session[:saleid]), { :id => "sale_id", :onchange => "search_verify();" } %> I have a post on, ''onchange'' event of it. if i
2008 Apr 27
0
Page expires when using back button
Hello, I have a search form to search for people. When i click the search button I get the results. But when I go to any another page (like the profile of the person in the search result) and hit the back button on the browser, the page expires. Please suggest me what do i need to do so that i can get back to the results page. Thank you. -- Posted via http://www.ruby-forum.com/.
2010 Nov 24
0
How to select BACK button in "Internet Explorer" using RUBY code with Watir Framework
How to select BACK button in "Internet Explorer" using RUBY code with Watir Framework -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to
2006 Jul 12
3
Ajax, the Back button, and Sweepers
I''m working on an app that''s basically forms and that makes fairly heavy use of Ajax. As a result of the Ajax usage, if the visitor uses the back button they get the page as it was originally loaded, not as they left it. I''ve looked at the Sweeper documentation and can not tell for sure that it''ll do what I want, which is to force an unconditional reload from
2007 Jun 19
4
back button for AJAX in rails
Greetings all, I am wondering are there any thing like link_to_remote(:update, :url) in rails which preserves the navigation feature (back & forward button as well as bookmarks) of the browser? Thanks very much! Cheers, Difei -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google
2016 Dec 02
1
CentOS 7, PS-2 moose
Yamaban wrote: > On Fri, 2 Dec 2016 18:28, m.roth at ... wrote: > >> I just built a workstation, CentOS 7, fully updated. My user requires >> his three-button mouse, telling me that imaging software is written for >> three-button mice (so *please* don't tell me to tell him to get a new >> mouse). >> >> Anyway, no cursor. In both /var/log/messages and
2007 Jul 20
3
Mozzila Logout back button issue
Hello, I have recently created an application in Rails which makes use of a login and logout system. I have a user controller and model as well as a login controller. My login controller performs my logout and login functions. The user is a scaffold of my database table and is auto generated from rails. def process_login #Creates the user with the form variables i have not included the
2008 Nov 26
0
Boot Failed While creating guest domain
Hi   I tried to create a guest domain and it failed however from another window i used xm list and observed the below.. I''m unable to login to the guest domain. Please help me.   [root@xenserver xen]# xm create -c xenclient1 vmid=1 Using config file "./xenclient1". Started domain centos5.2 Linux version 2.6.21-2950.fc8xen (kojibuilder@xenbuilder2.fedora.redhat.com) (gcc version
2008 Jun 11
1
Para virtualized guest on Xen
I am trying to create a para-virtualized guest with the same kernel image and initrd image as dom0. The configuration is below ================================================================================ kernel = "/boot/vmlinuz-2.6.21.7-3.fc8xen" ramdisk = "/boot/initrd-2.6.21.7-3.fc8xen.img" memory = 428 name = "fedora.fc8" vif = [ '''' ] dhcp =
2008 Mar 19
6
Back button behavior has changed again in Safari 3.1, after doing a dom update via ajax/RJS
GAH! Here is the firefox behavior, which is perfect: 1) View page 1 2) Update some text by using link_to_remote or remote_form_for, along with an RJS replace or replace_html 3) Navigate to page 2 4) Hit back 5) Page was cached with dom updates, note that the page is show in the same state as it was left Safari 3.0 behavior 1..4) repeat 5) Page reloads, ending up in the state where it was left
2012 Apr 03
5
Import from excel button in R-command
Hello I have been searching for almost 2 hours for a certain plug-in/package, so im making this thread as i hope you can help me find it. I had my first lesson in "Statistics in use" today, and when we worked on the school computers, we could do this to import data from excel: Data > Import Data > Import from excel or "something else" Now i downloaded it for my
2006 Feb 14
8
Best Practices For back/cancel/return button
Are there any best practices for implementing a back/cancel/return button... even when the page you want to return people too is 2 pages back (when people submit form and then want to return)? Thanks :-) Your Friend, John Kopanas http://www.kopanas.com ===================================================================== http://www.soen.info - source of the freshest software engineering