Jump to content

[SOLVED] Maintain Scrollbar Position After Query


dlebowski

Recommended Posts

I have a php site that is using AJAX and I am running into a problem that I don't know how to solve.  I imagine this will be done in the java portion of AJAX, but need assistance to confirm this. 

 

After I update my database using an update query, the results are then populated back using AJAX.  The issue I am running into is that I need the results to come back and the scrollbar to maintain it's position prior to the update query being executed.  The list of items that are returned is very large and it is a hassle to have to scroll back down to find the next item to update in the list.  Any assistance on this would be great.  Thanks!

 

Ryan

Link to comment
Share on other sites

Below is the code I am currently using.  Any help would be appreciated.  Thanks!

 

var xmlHttp

function updatelotslive(str, str2, str3, str4, str5, str6, str7, str8, str9, str10)
{ 
xmlHttp=GetXmlHttpObject()
if (xmlHttp==null)
{
alert ("Browser does not support HTTP Request")
return
} 
var url="update.php"
url=url+"?ud_LotID="+str
url=url+"&ud_LotNumber="+str2
url=url+"&ud_LotTitle="+str3
url=url+"&ud_SellingPrice="+str4
url=url+"&ud_LotPaymentExempt="+str5
url=url+"&ud_Buyer="+str6
url=url+"&ud_OnlineOnsite="+str7
url=url+"&ud_AbsenteeBid="+str8
url=url+"&ud_SellerNumber="+str9
url=url+"&ud_LotAuctionDate="+str10
url=url+"&sid="+Math.random()
xmlHttp.onreadystatechange = function(){
	if(xmlHttp.readyState < 4){
		document.getElementById('txtHint').innerHTML = '<h2>Loading...</h2>';
	}
	if(xmlHttp.readyState == 4){
		document.getElementById('txtHint').innerHTML = xmlHttp.responseText;
	}
}
xmlHttp.open("GET",url,true)
xmlHttp.send(null)
}

function deletelotslive(str)
{ 
xmlHttp=GetXmlHttpObject()
if (xmlHttp==null)
{
alert ("Browser does not support HTTP Request")
return
} 
var url="deletelotslive.php"
url=url+"?ud_LotID="+str
url=url+"&sid="+Math.random()
xmlHttp.onreadystatechange = function(){
	if(xmlHttp.readyState < 4){
		document.getElementById('txtHint').innerHTML = '<h2>Loading...</h2>';
	}
	if(xmlHttp.readyState == 4){
		document.getElementById('txtHint').innerHTML = xmlHttp.responseText;
	}
}
xmlHttp.open("GET",url,true)
xmlHttp.send(null)
}

function GetXmlHttpObject()
{
var xmlHttp=null;
try
{
// Firefox, Opera 8.0+, Safari
xmlHttp=new XMLHttpRequest();
}
catch (e)
{
//Internet Explorer
try
  {
  xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
  }
catch (e)
  {
  xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
}
return xmlHttp;
}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.