Confirm A Deletion Action

Nov 20, 2004

To confirm that a CMS user really wants to delete a record, I have added some Java Script that was originally intended to confirm if a user wants to visit a new web page that takes a long time to download. The script provided two location.replace() options: 1) to visit the new page or 2) to return to the previous page. I want to modify it so that the options are 1) to continue on to the following deletion script or 2) reurn to the previous page. How do I set up option 1) to do this in the following script? Probably something else than location.replace().

Right now I have option 1) set to direct the user to the same deletion page where this script resides. But this will just loop the user back thru the same JavaScript. Again, I want the first option to just allow the user to continue on thru the rest of the deletion script. Code:

View 6 Replies


ADVERTISEMENT

OnClick: Confirm Or Cancel Action?

Apr 20, 2010

I have a problem to add confirmation function to my script. I have a table with data from database. "Delete" button is in each row of table to delete whole row from database (based on ID).I need to after click on "Delete" button there was confirmation to delete it or cancel. I made some tries but no matter I clicked "OK" or "CANCEL" delete was made.

Here's part of PHP code of my script:

PHP Code:

<?php
while($rows=mysql_fetch_array($result))
{
?>

[code]....

View 3 Replies View Related

Get Return Value Of Function For Deletion In Database

Mar 19, 2011

I have this code
<TR id="tr1" onClick="var ret_val = clickedfun(this.id)" />
and this javacript code
<script language="javascript">function clickedfun(tid) {var elemento = document.getElementById(tid);if(confirm("Tem a certeza que quer remover esta fila?")){elemento.style.visibility='hidden';var numero=tid.substring(2,tid.length);return numero;}}</script>;
I want to get the return value of the javascript function to use in database for deletion of that value. I am using jsp and java classes.

View 7 Replies View Related

Multiple Textbox Creation And Deletion Within Table

Apr 11, 2011

Having problems with my add button, it works . . . when it wants to. Its OK when adding but when trying to add after deleting it gets moody and doesn't work. I didn't use a loop but there's a counter for the sake of the IDs cause I will be connecting a database to it.

<HTML>
<head>
<title>Work stuff</title>
<script language="javascript">
row_no=0;
function addRow(tbl,row){
//row count
row_no++; .....

View 2 Replies View Related

Script - Confrmation Of Record Deletion On Server Side In Asp.net

Nov 30, 2009

I hava e java script fr confrmation of record deletion on server side in asp.net

In the button event i have a query for redord deletion

I need to delete the records if u use the return keyword the record doesnot get deleted but if i remove the return keyowrd the record gets deleted even if CANCEL is clicked

View 1 Replies View Related

Google Maps - Make Deletion Option For Marker?

Jul 12, 2011

Of course, I make code for marker add and move, but how do I can make deletion option for marker? And how do I can make automatic route creator from marked point A to marked point B?

View 1 Replies View Related

JQuery :: For An Action On A Element, Stop The Action On His Parent?

Dec 2, 2009

Is that possible when you click a child that the function on the parent don't run.

In these example, if I click on 'h2 > a
', both elements triggers functions ('h2' & 'a')
What I wan't is that if I click on 'h2 > a

[code]....

View 1 Replies View Related

JQuery :: Stop A Action Hover And Just The Last Action Happen?

Jul 23, 2011

I need to know how stop a action hover and just the last action happen

View 2 Replies View Related

Changing The Action Of A Form With An Input Named Action?

Feb 16, 2009

I have come across a very interesting problem that seems to be impossible to solve. Basically a web application that I am working on relies on a JavaScript function called go to change the input named view to the page name and submit the form. This form's type is post, so no values are included in the actual URL string. There is also another input called action and it's value is view. This is to tell the application that the user would like to view a page. The problem is because of the variables being of method post, page refreshes and back and forwards return errors because the post variables view and action aren't sent with the required data. To somewhat solve this problem I have created a feature that tells the application that if the post value page is empty then to try and get a GET var called page. To insert this var into the go javascript function I simple add this code

document.go.action = document.go.action+"&page="+page;

This line basically adds &page=[page] to the action of the form. The problem is, this code doesn't work because action is also the name of a form element. Referencing document.go.action refers to the input element named action and not to the form's action. Changing the named of the action input value is out of the question (Way to much changing of code, and possible room for error). What can I do to change the action of the form without referencing the input named action. Here is my go form and the JavaScript code:

<form name="go" action"index.php?sid=123" method="post">
<input type="hidden" name="action" value="view" />
<input type="hidden" name="view" value="" />
</form>

[Code]....

View 6 Replies View Related

Form Without Action 'imitate' Of Other Form (which Do Have Action)?

Mar 5, 2008

I have a very weired problem (which is not easy to describe.. but I'll do my best):I have a html page with several forms , only one of the got the action="ComputeAndReturn" and the other forms got only name="" tag.the problem is that after i submit the form with the action , and than after a computatioon it returns to the original page, now... if i will submit any of the forms without the action=.they will act as if they were defined action="ComputeAndReturn" (altho they are not!)if they were defined from the first time with action="anything", and than i would submit the form with action="ComputeAndReturn" this problem would not appear (the other forms will keep their action="anything" and would not "imitate" the action= "Compute AndReturn" to them selfs...

any ideas how can i keep my forms without action="" , cause all i need them to do is be submitted to pass the submitted value to other form inside that page.[code]

View 8 Replies View Related

Confirm Box

Jul 23, 2005

is there a way of changing the values of the confirm box from ok / cancel to
yes / no

i have the following alert/confirm box but it is worded in a way that the ok
and cancel do not make sense:

function confirmNewSupplierWelcome(){
return confirm(
'Before going on to request a new supplier
'
+ 'are you sure there is no suitable alternative?'
+ '
Remember, new suppliers are authorised by exception only'
);
}

View 8 Replies View Related

Confirm Msg On OnUnload?

Jul 23, 2005


Is there anyway to display a confirm msg onUnload of a page?

I mean to say if iam calling onUnload=javascript:check();

and in check(){

if(confirm("check?"))
{
unload the page;
}
else
{
Dont unload , just come back to the previous state( i have some
values in text fields to be retained)
}
}

I want to call this function on Unload.

View 3 Replies View Related

Confirm Window With (Y) & (N)?

Jul 23, 2005

anyone know how to pop up a confirm window with (Y) & (N)?
I want to pop up a "Do you want to continue?" message box (javascript
only, can't use vbscript) with (Y) & (N). when click (N), then close
the current window. If click (Y), then back to server side to
continue. Is it possible?

View 2 Replies View Related

Confirm Window

Nov 10, 2005

is there anyway to make certain text in the confirm window, the one
what comes up when i call confirm(text) in javascript? I'm displaying
a message in the confirm window to the user and wanted to make certain
text bold.

View 2 Replies View Related

Javascript And Confirm

Oct 13, 2006

This is a weird one and I am wondering if someone can help?

I have a piece of Javascript
function deleteRequest(searchID) {
if (confirm('Are you sure?')){
location = "index.php?spDB=inactive&searchID="+searchID;
}
}

When the page gets reloaded, it runs a database query and something is
made inactive.

The problem is:

When the confirm box appears, if I press OK quickly, the database query
doesn't happen. If I wait 1 second and then press OK, it is fine and
the query is run.

Basically it appears that the time between the confirm javascript
appearing and the time taken to press the Ok button affects the
reloading of the page.

Has anyone else had an issue like this?

View 1 Replies View Related

Nothing Executes After Confirm Box?

Jul 2, 2011

when my page loads it starts with a confrim box. If "Cancel" is selected then the rest of the page loads fine. If "Ok" is selected nothing after the confirm box loads.Also, it appears that IE and Firefox have trouble with this type of media and Chrome will only play the audio file for about 15 seconds.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>[code].....

View 2 Replies View Related

Confirm Pop Up Window

Apr 30, 2007

I have a link that I want when the user clicks on it a confirm pop-up to appear.
But it’s not working.

echo '
</td><td width="15%" bgcolor="'.$bg_color.'" align="center" class="update"><div class="update">
<a href="index.php?autoid='. $autoid .'" class="update" confirm("do you really want to delete")">DELETE</a></div></td></tr>'

View 6 Replies View Related

Using If Else Statement With Confirm Box

Apr 14, 2009

I need to give two separate alerts depending on what the user clicks when they click the "Submit" button. I am using a confirm box. If they click "OK" it thanks them for their order. If they click "Cancel" it should go back to the form. I have written the code that I thought would work but it will not.

function confMsg(){
var s
s = confirm("Click OK to Submit Order. Click Cancel to Cancel")
if (s=="true"){
alert("Thank You for Your Order!")
else
return;
}}

View 2 Replies View Related

Confirm Alert

Nov 13, 2003

How would I go checking if a certain submit button was pushed and if so confirm the user if he is sure. But if he pushes cancle, then it will cancle the operation.

View 4 Replies View Related

Confirm Delete

Oct 29, 2005

function del(type, id, title) {

if (confirm("Are you sure you want to delete '" + title + "'"))
{
window.location.href = 'http://www.example.com/delete.php?t=' + type + '&id=' + id;
} else {
return false;
}}

PHP Code:

echo "<a href='#' onClick='del(a," .$result->getFieldByName('work_name') . ",". $result->getFieldByName('work_id') . "); return false;'>(Delete)</a></p>";

And finally the XHTML when I view source:

<a href='#' onClick='del(a,This is Another Test,38); return false;'>(Delete)</a>
... I'm getting absolutley no response. Ideas?

View 3 Replies View Related

Javascript Confirm Box

Sep 21, 2006

I have created a form with two submit button “Delete and Edit” in the form I have a javascript code, that displays a confirm box when the delete button is clicked, clicking on cancel should stop the execution of the delete script and ‘ok’ should run the script. Now, using the form this way works perfectly in Mozilla fireworks, but IE posing a problem when I click on cancel, it still executes the delete script.

<form method="post" action="eddel.php" >
<input type="submit" value="delete" name="delete" onclick=”return confirm(‘are you sure you want to delete record?’)”;>
<label>
<input name="edit" type="submit" value="edit" />

</form>

View 1 Replies View Related

How Do I Do A Confirm Dialog Box With <a> ?

Jan 7, 2002

Basically, I'd like the code for a simple Confirm Dialog box.

My message is dynamic - I just want a confirmation box to appear when people click on a link which leads to a delete script.

I was wondering if people had both the <script> part and the <a> part to initialise the dialog box?

View 4 Replies View Related

How To Do Loop/confirm

Jul 9, 2011

the total number of grades and the sum of the grades. Your program will ask a user to input a number grade (assume the user enters a number between 0-100) if the number grade is greater than 90 set your letter grade = A, >=90 = A>=80 = B>=70 = C<70 = FFor each grade entered add the number grade to your sum. output each number grade and letter in a sentence and on a separate line for example if the user entered 95, you would output 95=Aafter each grade is entered ask the user if they would like to continueif the user doesn't wish to continue, output the sum of grades, the number of grades entered, and the average (all on separate lines) with the values in BOLD.

View 4 Replies View Related

How To Customized Confirm Function

Apr 10, 2006

Let's say I want to remove/insert one button in the popup panel of the
confirm function, or change the text of the button (ex. "ok" rename to
"pls try again"); and also change the background of that panel.

if not possible, how to write a simulated panel?

View 1 Replies View Related

Confirm Buttons -beyond 'OK' & 'Cancel'

Jan 23, 2007

I've found articles/posts on creating custom confirm pops utilizing hidden <div> etc,
but adding 40 odd lines of code just to offer Yes or No buttons seems absurd.
Short of creating a complete confirmation div and script, is it possible
to EASILY change the button values of a confirmation pop-up?
For Example, "There is a related value not selected in the form.
Would you like to select it now?"

View 5 Replies View Related

Re-opening Browser With Confirm Box

Oct 28, 2007

I'm new to Java Script and I'm having trouble getting something done. What I'm trying to do is have a confirm box open when the user closes the web page that asks a question. If the user clicks cancel, then the page stays closed. On the other hand, if the user clicks OK, then a page opens. The problem is, I have no problem getting it to work if the user "unloads" the page by using a link to another site, but I don't know if it is possible to use java script to re-open the browser, and then open it to a specific page if the user unloads the page by closing the browser.

My logic says it's not possible. Java script works in the browser, so how can it do anything once the browser has been closed? Am I right? If not, can you show me how to edit the code to make it work? Here's what I have so far:

<script type="text/javascript">

function showalert(){

var conf = confirm("text here");

if (conf == true){
window.location.href = "http://www.nameofpage.com";
} else {
return true;
}}

</script>

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved