Log in

View Full Version : Need help with very simple AJAX...


Jaxel
07-22-2009, 10:44 AM
I'm trying to figure this AJAX stuff out, but its SOOOOO confusing... Would someone mind helping me do this small script as SIMPLE as possible? Lets say I have the following code (psuedocode):
$value = SELECT char FROM mytable WHERE id = 1
This code returns $value[char] as "amy".

Then in a table cell I have the following:
<td><img src="$value[char].jpg"></td>

I want to be able to double click anywhere on that table cell, and get a text box that lets me edit the value of char FROM mytable WHERE id = 1. Pretty much the same thing as the inline title editing on vBulletin, except that it shows the text value as an image when its done.

Thanks in advance.

pein87
07-23-2009, 03:14 PM
Sett up a ondblclick for that table by adding an internal div. Then set up your ajax function.

var ajax = "";
var url = "";// if using vbulletin templates add php code in the ""
if(window.XMLHttpRequest())
{
ajax = new XMLHttpRequest();
}
else if(window.ActiveXObject)
{
ajax = new ActiveXObject("Microsoft.XMLHTTP")
}
ajax.open("GET", "your_script.php", true);
if(ajax.readystate=4 && ajax.status=200)
{
ajax.send(null);
} else if((ajax.readystate=1 && ajax.status=401 || ajax.readystate=2 && ajax.status=500))
{
ajax.abort();
Theres your ajax functions right there now all thats left is to use javascript to create the new
input form and trigger this function ondblclick so it sends for data, and replaces it into the value of the input box. Then re-trigger the ajax onsubmit so it updates the database and use
ajax.responseText(); with innerhtml(); to save the changes to the value of the input box.

1Unreal
07-23-2009, 03:31 PM
I would highly recommend looking into jQuery. It makes ajax so simple.

ragtek
07-23-2009, 03:41 PM
Why use your own or jquery when vbulletin deliveres yui and his connection manager?
http://developer.yahoo.com/yui/connection/

1Unreal
07-23-2009, 03:52 PM
I don't like the YUI, I don't find it very developer friendly. But thats me.

Adrian Schneider
07-23-2009, 06:19 PM
YUI3 is actually a lot more like jQuery now. Still beta, though.

+1 for jQuery.

Dismounted
07-24-2009, 10:34 AM
I don't like the YUI, I don't find it very developer friendly. But thats me.
However, since vBulletin itself is utilising YUI, it's probably better to stick with it for vBulletin modifications. Otherwise, I would agree with you.