Method or control to return user to previous state, page or screen.
-2
votes
2answers
38 views
UINavigationcontroller backbutton error?
When i click the button 1 in viewcontroller1 it will open "Viewcontroller2" and display some contents in tableview (with back button in top left corner) when i click any row it will open the previous ...
0
votes
1answer
27 views
php form retaining values on back button
I have a small form which retains the form fields when the form is submitted
<input name="name" type="text" placeholder="Your Name" value="<?php print $_POST['name']; ?>" />
The ...
0
votes
1answer
28 views
Shell command for getting history of a specific command
I am looking for a command that shows what type of parameters are used earlier for the command I am using currently.
For example, if I want to use the command say tail, can I see the list of commands ...
-1
votes
0answers
27 views
Page expires on clicking “Back” button provided on page [closed]
I have a "Back" button on page. If I click it manually then it re-directs to previous page but if I click the button through cucumber then it shows page expired. Why it is not working as in the ...
0
votes
0answers
18 views
Implement Back button server side with Spring MVC
I would like to create a back button in my web application. but I want to implement it server side, and I would like it generic for all pages. I'm using Spring MVC and tomcat.
I have think about a ...
0
votes
1answer
22 views
Can I make the browser back button go to the edit page instead of new on creation
Here's the situation.
A user goes to the #new action, clicks submit form, and the object is created. The user is shown the show page
The user realizes something is wrong, so they click back (even ...
0
votes
1answer
40 views
jqm data-rel=“back” issue
imagine the following scenario:
i have a jquery-mobile formular, it´s results are linking to its resultpage.
on the resultpage i have this back button:
<a href="#" data-rel="back" ...
-1
votes
0answers
9 views
Return to a different View Controller clicking the Back Button
I have 3 viewcontrollers A, B and C. B has a back button. C return to B using Auto Rotation. But when I return from C to B it shows a Back Button to return to C. I want to be able to return to A not ...
0
votes
1answer
27 views
Nav Bar button loading random view before loading appropriate view
I have a back button on my answer view controller (a view controller that displays answers) if the user hits the back button I created it switches to a view that has the title of "Back" and just an ...
0
votes
1answer
42 views
Jquery cycle plugin: how to link from within slides and have slide number reflected in the URL
Ok, I have updated my code according to comments, thank you for that. So the back button is now working, however, it has stopped my internal links from working in the sense that they are no longer ...
0
votes
0answers
29 views
Microsoft Access z-index property
I have a form including listboxes. I'm trying to change order of listboxes. I tried bring front or send back but they are not working in form view. I found z index property for arranging their ...
0
votes
1answer
60 views
Vector - push_back uses default constructor not copy constructor
I'm facing the problem of adding new elements to my vector.
Let's start with the herarchy
Index conatins Companies. Companies contain Stocks
Index
{
...
vector <Company> composition;
...
}
...
1
vote
1answer
21 views
Brightness doesnt get saved when back button is pressed
I there, I have a seekbar on my application to change the brightness and its working.
Then problem is that, when I press the back button to navigate to another activity, the brightness goes back to ...
1
vote
1answer
28 views
Remember Collapse/Expand state of section when using browser back button
I have several section on my website. I allow the viewer to expand/collapse the sections individually. The sections are expanded with javascript (jquery / zepto). (There is a button for each section ...
0
votes
1answer
22 views
document.addeventlistener of javascript is not working for back button in chrome
In Chrome, when I first load a page with following code I get the console message
if (document.addEventListener){
console.log("asf");
document.addEventListener('mousemove', abc, false);
} ...
0
votes
1answer
17 views
How do I link back to a paginated and sorted list if that list is implemented using AJAX. I'm using Rails 3.2
I have a list of items that are paginated using will_paginate and this works great. I finally implemented AJAX following instructions from a railscast and it works like a charm. However, now, when I ...
0
votes
1answer
29 views
Microsoft Access listbox bring to front
I have two list boxes in a form. One of them is bigger than other. Smaller one was placed at the back of bigger one. I tried position > bring front for smaller one and position > send back for bigger ...
1
vote
2answers
56 views
Android: avoid calling onCreate() when back from another activity
Assume my application contains two activity, A and B.
Both are limited to portrait in AndroidManifest.
Activity A started Activity B.
In Activity B, there is a button, which calls finish() when ...
0
votes
2answers
27 views
pressing the back button on android through service
Is it possible to programmatically press the back button on android through a service ?
I know I can override the onBackPressed() method if I were in an Activity, but I am looking for a solution that ...
0
votes
0answers
26 views
Back button hash in form + ajax jquery system
I already have a hash system to my navigation with ajax/jquery ($.ajax) and a hack(hash) to have the back button working in the normal navigation.
For an example, I'm at the page:
site.com/#!teste
...
0
votes
1answer
33 views
Android TabHost - catch back button
I have an Android app that uses TabHost, the activity that calls the others based on the selected tab is simply called Main.java. I have tried to override the on back button event inside of the ...
0
votes
1answer
43 views
xCode 4.5 Navigation Controller and back button how to save values
In my code I created this
#import <UIKit/UIKit.h>
@interface ViewControllerTable : UIViewController <UITableViewDelegate, UITableViewDataSource>
@property (weak, nonatomic) IBOutlet ...
0
votes
1answer
32 views
onBackPressed function in android
I am creating app, in one class it contains imageview and textview, another contain edittext, when I press back button, the edittext in 2nd class has to store and set it in textview of first class. ...
0
votes
0answers
17 views
Back Button Undefined Web View
As part of an app I am creating, I am trying to make little push buttons go to web pages. I've been using webview for such, but an having some trouble configuring the back button
My Current Code so ...
0
votes
0answers
33 views
Sub Activities under TabActivity and Back button in android
I have to show multiple activities under same tab. I have followed the below
http://androidcodeexamples.blogspot.in/2012/08/multiple-android-activities-in.html. But when I'am in sub activity and press ...
2
votes
4answers
75 views
Back button in php
Ok, so I was not able to find this after searching through google for a while, I'm trying to have a back button on the error page for php, right now it will say "email is wrong" "first name is wrong" ...
0
votes
1answer
39 views
android webview onBackPressed
I have webview based app which loads data using both loadDataWithBaseURL (remote urls) and loadUrl calls (from assets). How do I now handle backPress.
ex use case.
step 1 - no default page to show ...
0
votes
0answers
17 views
Back Button Reloads Page When Viewed As Web App
I have a back button on my adaptive website. This is the code that runs it:
<a href="#" onclick="history.go(-1);return false;">Back</a>
It works as expected, but when I add the website ...
0
votes
3answers
73 views
how to send more then 1 EditText value using bundle
I have made a simple android program with two activities,in that 1st activity contains some edittexts and a button,and second activity contain same number of textviews.Now when the button in 1st ...
0
votes
1answer
71 views
Back camera android not work
I have a problem. I want execute example app from
http://www.vogella.com/articles/AndroidCamera/article.html
It works.
But when change in code CAMERA_FACING_FRONT to CAMERA_FACING_BACK I see in ...
1
vote
1answer
49 views
Javascript : go back with new parameters
I have a problem with the history.back() function.
I have three page A,B,C:
the first one (A) has a link to the second (B) and the link contains
parameters (?id=..).
B has a link to C
I go back ...
0
votes
1answer
57 views
Return to previous activity using onBackPressed() without finish()?
I have 2 activities. Activity1 lists a bunch of songs and when one is selected, it go plays the selected song in Activity2. Now I can press Back to go back to Activity1 but I overridden the ...
0
votes
0answers
7 views
wp8:How to use the back key to jump to the MainPage at once?
Just as the title.And how to end the program from the MainPage?
wp8:How to use the back key to jump to the MainPage at once?
0
votes
0answers
62 views
Possible bug with <select><option> value modification and Back button on Chrome
Chrome Version (type about:Version 28.0.1491.0 canary and 26.0.1410.65 Google Chrome):
Operating System (Mac OS X Mountain Lion):
The problem only occurs with Chrome Canary and regular Google Chrome.
...
0
votes
1answer
123 views
overriding back button in fragment
I have an activity with different fragments in the tab selection, I want to override the back button so that it calls a method in the fragment that update the listview to the parent folder list.
For ...
1
vote
3answers
86 views
finish activity in onActivityResult does not work
I have a pair of activities that must live or die together. Basically AlphaActivity does some work and then dispatches an intent (startActivityForResult()) for BetaActivity. When BetaActivity is done, ...
1
vote
1answer
124 views
android other activity click back key to listview ,the listview item can't click under the tab
I have a tabhost,
the tab A will connect A activity,
the A activity's layout have a Edittext, button and a listview.
the listview is customed from baseadapter. the listview include a textview, ...
0
votes
7answers
114 views
Button to go back to the previous page
I want to make a button that allow user to go back to the previous page when click. Just work like the physical back button on the android device. What should I add to the java file?
here is the ...
0
votes
1answer
65 views
change button color when clicked and change others back to original
I have a buttonbar with 11 buttons that causes page jumps in a page displayed in an iframe.
I want these buttons to change color when clicked, so they indicate which page is being displayed.
That´s ...
0
votes
1answer
33 views
Why does the back button not work with HTTP POST?
What is the reason that we cannot use the browser Back button when we submit a page using HTTP POST? But it is fine with HTTP GET? I have read that the browser tries to prevent multiple POSTS (to ...
0
votes
0answers
38 views
Back Button Behaviour in FireFox
I have a trouble with reloading page after clicking back button in FireFox browser.
I have a count down timer on page, so when i go to another page and then click back button i need to refresh timer. ...
0
votes
1answer
75 views
How to trigger back button event used to hide inbuilt keyboard?
I want to know the event which is fired when back button is pressed to hide inbuilt keyboard.I want to add a view into layout when back button is pressed to hide keyboard.I am also adding a view when ...
0
votes
2answers
34 views
Sqlite Next acting strange Android
I have this query for moving in my database
Select data1,data2 From Table Where counter <"+somenumber+" and order by counter DESC
this is for moving back, and i have same, but without desc for ...
0
votes
2answers
52 views
Android back softkey how to use
I have a short question:
I'm new in the worl of android and I started now to programm a little app.
Now I have finished it and debugged it on my Samsung Galaxy S3. The application has 4 layouts. With ...
-1
votes
3answers
139 views
AJAX Disable back button until callback executes [duplicate]
I have a code error popping up when someone hits the back button while an ajax call is loading. Is there a way to disable back until the call returns successfully?
Example:
$.ajax({
// Disable back ...
0
votes
2answers
128 views
Showing the previous activity on back button click
I have two activities: ActivityA and ActivityB
Activity A contains three linear layouts. Clicking on each linear layout is calling a showReport method which is starting ActivityB.
On Back Button ...
0
votes
1answer
87 views
javascript go back by #url
im testing a method that include simple javascript to switch different contents instead of linking to other pages. However the problem is if i do this, the browser actually renders all "pages" but ...
0
votes
1answer
139 views
iPhone css hover should go back normal 'unhover'
I'm working on a web app for the iPhone…
I made a 'button' with the following CSS, when you tap it (:hover) it changes, but when you release, it should go back to normal mode… How do i do that ?
...
0
votes
2answers
100 views
how to return to previous fragment activity
Three fragment activities: MainFragmentActivity, Reports and ReportsType.
Reports is calling ReportsType.
There is a back button in ReportsType to go back with the following code:
public void ...
1
vote
1answer
45 views
How to redirect from one action of controller A to an action of controller B and back in Rails?
I have two associated models, Employee and Company:
class Employee < ActiveRecord::Base
attr_accessible :name
belongs_to :company
attr_accessible :company_id
end
class Company < ...



