Go Back   CodingForums.com > :: Client side development > JavaScript programming > DOM and JSON scripting

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 12-27-2012, 03:07 PM   PM User | #1
larnott01795
New to the CF scene

 
Join Date: Dec 2012
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
larnott01795 is an unknown quantity at this point
Unhappy Please help!! JavaScript XSL combine

Hi,

I have a JavaScript function which is embeded in an XSL file, I am using this to try and bring back a list of strings based on a number of rows in an XML file.

The problem I have is that I do not have the url of the XML file as this is created on the fly so I cannot load this in to look at the specific nodes of the file.

I am therefore trying to get some info from the XML file using an XSL tranformation in my javascript code. This works great, apart from one part of the code which I cannot get to use the variable "i". This is the part [@index=1] in the code below.

Code:
function Test()
{
	var xmlDoc = Navigator.CurrentXML;
	//xmlDoc.getElementsById("STAFF");
	var inputList = document.getElementsByTagName("select");
	docList="";
	for (var i = 0; i < inputList.length; i++)
	{
	docList += "GroupSetAttendanceType?documentList="
+"<xsl:value-of select="Data/DataRow[@index=1]/ID" />&amp;attendanceTypeID=" 
+ inputList.item(i)[inputList.item(i).selectedIndex].value 
+ "&amp;attendanceTypeDesc=" 
+ inputList.item(i)[inputList.item(i).selectedIndex].text;
	}

	GetControl("TestLine").innerHTML = docList;
}
Instead of [@index=1] I want it to be [@index=i+1] and use the variable i to determine what row index to use in the code. When I try this however it just brings out a null value.

I have tried things such as trying to split the text

"<xsl:value-of select="Data/DataRow[@index=1]/ID" />"

into

"<xsl:value-of select="Data/DataRow[@index="
+(i+1)+
"]/ID" />"

but this brings up an error saying
"The XSL could not be parsed. The error is Name cannot begin with the '+' character, hexadecimal value 0x2B. Line 16, position 99."

Any help would be greatly appreacted as I am pulling my hair out trying to get this to work.

Many thanks,

Laurence
larnott01795 is offline   Reply With Quote
Old 12-27-2012, 03:21 PM   PM User | #2
AndrewGSW
Senior Coder

 
Join Date: Apr 2011
Location: London, England
Posts: 2,120
Thanks: 15
Thanked 354 Times in 353 Posts
AndrewGSW will become famous soon enough
Your use of quotation is incorrect: you cannot nest double quotes within double quotes.

"This "won't" work"
"This \"will\" work, using 'escaping'"
"This 'will also' work, using apostrophes"
__________________
"I'm here to save your life. But if I'm going to do that, I'll need total uninanonynymity." Me Myself & Irene.
Validate your HTML and CSS
AndrewGSW is offline   Reply With Quote
Old 12-27-2012, 03:39 PM   PM User | #3
larnott01795
New to the CF scene

 
Join Date: Dec 2012
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
larnott01795 is an unknown quantity at this point
Quote:
Originally Posted by AndrewGSW View Post
Your use of quotation is incorrect: you cannot nest double quotes within double quotes.

"This "won't" work"
"This \"will\" work, using 'escaping'"
"This 'will also' work, using apostrophes"
Great thanks for your help, I have tried this but with no luck, can you see if the either of the below are correct as these have both produced errors

Code:
"<xsl:value-of select=\"Data/DataRow[@index="+(i+1)+"]/ID\" />&amp;attendanceTypeID="
and

Code:
"<xsl:value-of select='Data/DataRow[@index="+(i+1)+"]/ID' />&amp;attendanceTypeID="
larnott01795 is offline   Reply With Quote
Old 12-27-2012, 06:35 PM   PM User | #4
AndrewGSW
Senior Coder

 
Join Date: Apr 2011
Location: London, England
Posts: 2,120
Thanks: 15
Thanked 354 Times in 353 Posts
AndrewGSW will become famous soon enough
I'm guessing this
Code:
inputList.item(i)[inputList.item(i).selectedIndex].value
is probably wrong. If inputList is a SELECT then probably:
Code:
inputList[inputList.selectedIndex].value
// or..
inputList[i].value
__________________
"I'm here to save your life. But if I'm going to do that, I'll need total uninanonynymity." Me Myself & Irene.
Validate your HTML and CSS
AndrewGSW is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 10:04 AM.


Advertisement
Log in to turn off these ads.