Avatar of Qsorb
Qsorb
Flag for United States of America asked on

Update database without refreshing page

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Shopping Cart</title>
<style type="text/css">
<!--
.delbtn {
	background: url("/a/delbtn-x.png") no-repeat;
	font-weight: bold;
	text-decoration: none;
	display: block;
}
.delbtn:hover {
	background: url("/a/delbtn.png") no-repeat;
}
-->
</style>
</head>
<body>
<iframe name="brain" src="" width="0" height="0" marginwidth="0" marginheight="0" frameborder="0"></iframe>
<cfquery name="ServicesInfo" datasource="NEWSB">
 select *
 from services
 where id =1

</cfquery>
<cfoutput query="ServicesInfo">
 <table border="1">
  <tr>
   <td>Title</td>
   <td>Remove</td>
  </tr>
  <tr>
   <td>#package#</td>
   <INPUT CLASS="delbtn" TYPE="text" NAME="#Title#" VALUE=" &nbsp; " SIZE="4" MAXLENGTH="4" onChange="brain.location='/service/update.cfm?id=4;">
   </td>
  </tr>
 </table>
</cfoutput>
</body>
</html>

Open in new window


This example shopping cart test page will be open to the public on the web so it has to work in all major browsers.

I want to update a choice in our sql2000 database, similar to what Netfix does when one clicks on the big X to remove a DVD from the list of DVD titles in the "Your Queue" page. The image here is the X. That works here. That's not the problem.

In any event, the code I'm using does not work. I want to use the best possible choice, even if it means I take some time to understand it, and it may take more than one question.

Can someone help, or point me to a clear, basic example how to achieve what I want. I'm a novice and need this explained, what needs to be done to call my update.cfm without moving away from the current page or refreshing it.

Also, I'm not at all certain if using iframe could be a problem, if it could be seen as a pop up.

Open in new window

ColdFusion LanguageJavaScriptAJAX

Avatar of undefined
Last Comment
Qsorb

8/22/2022 - Mon
ASKER CERTIFIED SOLUTION
Dave Baldwin

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
SOLUTION
Coast Line

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Qsorb

ASKER
DaveBaldwin: I had seen that earlier and it may be far beyond my ability.

myselfrandhawa: Looks interesting but some of your suggestions are confusing to me:

You wrote:  "complete.cfm - you update goes here do whatever u want to do and return anything whatever message u wanna display to user, and div will reload"

Where does "complete.cfm", or in my case, "update.cfm" go? You seem to indicate it goes on the same page, or do you mean to cfinclude it?  And if so, under what condition?  I don't have a clue as to what you mean,  as to where the cfquery update actually goes, and how, and even when.

Also not sure of this:

<div is="message"></div>
<div id="refreshMe">

Did you mean <div id="message"></div>     (I changed your "is" to "id")? Is that correct, id instead of is?

And what does the refreshMe id do,  for what?

And just as important, you suggested, "why not use jquery here like this:"

I included that Javascript on the same page, between HEAD with <script type="text/javascript">. Not sure if this is what you meant.

Did you mean to also include a jquery code somewhere? This is also confusing. You may be thinking I know what you mean, when I  don't. You took some time to explain, and I appreciate it, but what I wrote above is most of what I don't understand.

Please clarify soon as you can as I URGENTLY need this. Thanks!
Qsorb

ASKER
Fortunately, I was able to get this working using  Ajax so will just close this and award points evenly.

I used the info on this page which gave me a working example. I had to modify my code quite a bit of course, to get it working, but this demo was the key to get my example working:

http://www.coldfusionjedi.com/demos/sharp/ajaxSubmit/
I started with Experts Exchange in 2004 and it's been a mainstay of my professional computing life since. It helped me launch a career as a programmer / Oracle data analyst
William Peck