[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

11/14/2007 at 06:28AM PST, ID: 22959964
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.2

Javascript function needing to adjust multiple spans with the same ID

Asked by topazg in JavaScript, WebApplications, Active Server Pages (ASP)

Tags: javascript, id, multiple, same

I'm currently developing a web application for scientific paper database management system, and am having issues with an AJAX function that is supposed to update multiple divs with the same name.

Schema background in simple terms is as follows:

There are multiple [papers] inside a [project] - call these [project_papers]. There are also 0 to many [subprojects] within the [project]. In the case of the screenshot example below there are 2 subprojects. A [project_paper] can exist in multiple [subprojects] within the project, or in none at all. Each row representing a [project_paper] on the screen has a "pin", which kind of acts like a sticky row when the contents of the project are contracted (hiding the ones with the pin off). The pin is a span with an id and name of "pPaper{project_paper_id}", which is normally fine.

However, and this is where the problem exists, if the [project_paper] exists in two [subprojects] simultaneously, the span will of course have the same id and name as there is no differentiation between subprojects. Personally, I think this should be correct, and any javascript designed to update the contents of the span should apply to all instances on the page, but it only updates the top one - the database side of the AJAX fires correctly, and therefore the [project_paper] has the pin flag changed, but the display ends up confusingly incorrect.

Is there any way to update the javascript to update the content of both spans?

Screenshot example (rows in yellow are the one with the same id -- pin is red thing on the left):

http://rdms.powerwatch.org.uk/rdms1.png

Screenshot example with changed pin (top row pin changed but not bottom row):

http://rdms.powerwatch.org.uk/rdms2.png

HTML that calls the javascript function:

----------
<span name="pPaper<%=CLng(RS("project_paper_id"))%>" id="pPaper<%
  =CLng(RS("project_paper_id"))%>"><img src="/images/buttons/pin_<%
  =projPaperPin%>.gif" border="0" onClick="setProjectPin(<%
  =CLng(RS("project_paper_id"))%>,<%=theUID%>)" /></span>
-----------

Javascript functions:

-----------
/* Adjusts the pin status of a project paper within project or subproject for the active user */

var projPapPin;

function setProjectPin(projectPaperID,userID)
{
  projPapPin = projectPaperID;
  xmlHttp=GetXmlHttpObject();

url="/includes/ajax/ch_projectpin.asp?projPaperID="+projectPaperID+"&userID="+userID+"&sid="+Math.random();
  xmlHttp.onreadystatechange=displayProjectPin;
  xmlHttp.open("GET",url,true);
  xmlHttp.send(null);
}

function displayProjectPin()
{
  if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
  {
    document.getElementById('pPaper'+projPapPin).innerHTML = xmlHttp.responseText;
  }
}
-----------
[+][-]11/14/07 06:50 AM, ID: 20280293

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: JavaScript, WebApplications, Active Server Pages (ASP)
Tags: javascript, id, multiple, same
Sign Up Now!
Solution Provided By: nschafer
Participating Experts: 1
Solution Grade: A
 
 
[+][-]11/14/07 07:15 AM, ID: 20280528

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20090824-EE-VQP-74 / EE_QW_2_20070628