0
votes
2answers
59 views

How to call a jQuery function from a for-loop in HTML

so this may be a unique question I have this XSL for-each loop which generates 3 strings Music, TV, Comedy The HTML (and my javascript attempt) Uncaught SyntaxError <div id="rgt" ...
0
votes
1answer
63 views

How to toggle table rows on and off

I am currently toggling some table rows in my XSLT (html) xml style sheets. I have 6 rows I hide 3 to begin with then on a onClick command I would like to hide 1 row and open 3 others. This is what ...
0
votes
0answers
25 views

Using a web application to read and collect elements from XSL file

I have xsl page which include a number of templates cover all i need to create the webpages i want, i call the templates using nodes into another xsl file, I need to call and collect the templates ...
0
votes
1answer
43 views

Using a webpage/web application to read and collect elements from XSL file

I have xsl page which include a number of templates cover all i need to create the webpages i want, i call the templates using nodes into another xsl file, I need to call and collect the templates ...
1
vote
2answers
73 views

Get Div Value in Jquery

I have a code like this <p class="shownote"> Text value <a href="#" class="show"> textvalues</a> <input class="editnotesbox" style="display:none"></input> <a ...
1
vote
4answers
254 views

XML/XSL transform using Javascript/JQuery

Can anyone tell me if there is a way to do an XML/XSLT transformation on the client side using Javascript or JQuery, a way that works in all major browsers? (Chrome, Safari, Firefox and IE)? Thanks.
2
votes
2answers
106 views

Two flot charts in adjoining HTML divs causing problems

I have written a jquery plugin that converts a HTML table into a chart using Flot. The HTML is generated from an XSLT and within the XSLT I have the following code to make a call to my plugin. This ...
2
votes
1answer
132 views

Set Click event on value display in Html file and want to show there child Element When Clicked on it

this is my xml file:- <?xml version="1.0"?> <?xml-stylesheet type="text/xsl" href="final.xsl"?> <root> <child1 entity_id = "1" value= "Asia"> <child2 ...
0
votes
1answer
124 views

simple xml attribute value get the using xslt in the html file

The XML file look like this:- <?xml version="1.0"?> <?xml-stylesheet type="text/xsl" href="final.xsl"?> <root> <child1 entity_id = "1" value= "Asia"> ...
0
votes
0answers
58 views

Using the returned value of xsl:value-of in JQuery

I'm tasked with finding a client-side solution to dynamically displaying data from XML (so no PHP or ASP please). I am totally open to any suggestions on how to do this but I am currently trying a ...
0
votes
0answers
63 views

geting the child attribute value using client side scripting

my xml file: <childrens> <child1 entity_id = "1" value = "Asia"> <child2 entity_id = "2" value = "India"></child2> <child3 enity_id = ...
-2
votes
1answer
67 views

get the child attribute value using any of client side language [closed]

my xml file: <childrens> <child1 entity_id = "1" value = "Asia"> <child2 entity_id = "2" value = "India"></child2> <child3 enity_id = ...
0
votes
2answers
109 views

get xsl value in javascript and check for 0 to 99

I have the following xsl panels that are created depending on the user selecting a product. The user can select a maximum of 99 and 99 exact panels of the code below will be produced. I have jQuery ...
-1
votes
1answer
89 views

jQuery won't select XML elements in Firefox

Update: Question edited to add more information. My app directly views XML data in a browser -- after some light client-side XSLT processing that we can assume here is just the identity transform ...
0
votes
1answer
102 views

remove self-closed unnecessary markup xslt

I am using the following XSLT: https://gist.github.com/4402884 Where the following template does the transformation to render html output as follows: <li> <div class="content-left" ...
1
vote
1answer
197 views

XSLT two column unordered list

I need help with xsl transformation. I have xml being spitted out by SharePoint Server control as below: <rows> <row>A</row> <row>B</row> ...
4
votes
1answer
270 views

Dynamically creating form in JQuery and posting it with JSON

I am trying to dynamically create a campaignmonitor newsletter subscription inside my XSLT code. <script type="text/javascript"><xsl:text disable-output-escaping="yes"><![CDATA[ ...
1
vote
0answers
106 views

The auto-complete box is not showing list on webpage

I have put one textbox on webpage,which is autocomplete box.but when i write something in autocomplete textbox,it doesn't list anything even though it has list.While debugging the code,the list is ...
0
votes
1answer
222 views

Use XSLT and jQuery together

I am using XSLT to transform xml file to html so it can be viewed in a browser. My XSL file basically defines a number of tables (populated from my XML file). My HTML file is like below: ...
0
votes
0answers
201 views

ColorBox with SharePoint 2010 lists and XSLT - How to display each item from the “for-each” section?

I currently have ColorBox running in SharePoint 2010 which is working beautifully. However. I have a custom list consisting of cities. When clicking on these items the ColorBox pops up and displays ...
0
votes
1answer
39 views

finding the height of the document resulting from styling xml with xsl in javascript

I've used the example from w3 school's website here: http://www.w3schools.com/xsl/xsl_client.asp I've used the example under the heading: Transforming XML to XHTML in the Browser. Here, variables ...
0
votes
1answer
1k views

Error transforming XML AJAX response in IE 10

In Internet Explorer 10 only, I get an error transforming XML returned from an AJAX response: Object doesn't support property or method 'transformNode' Here is my code: function ...
0
votes
0answers
76 views

searching through XML via JQuery

I'm trying to build a basic search engine using an XML document as a database. As of now, I have the following Jquery code loading the full XML into HTML format, but I want it to display the data ...
0
votes
1answer
275 views

How to find out what percentage of the page has loaded in order to update the jQuery UI progressbar ?

I have a huge xml file which i am transforming using xslt. I am also doing a lot of stuff using jquery on page load. Basically hiding a lot of divs and opening them up after onclick. Because of this ...
1
vote
1answer
76 views

Use xsl variable to select class with jquery

Trying to use the variable to select a class, I've tried, <xsl:variable name="aClassName"><xsl:text>sub</xsl:text><xsl:apply-templates select="name" ...
2
votes
3answers
163 views

how to use ip address in xsl

I'm using xsl to generate html from xsl. I have to use ip address in name of the class in css like this: <td><div title="delete" > <xsl:attribute name="class"> ...
-5
votes
1answer
97 views

JavaScript to be converted to JQuery [closed]

I have an old file which I'm looking to update, the file conatins some JavaScript which I would really like to convert to JQuery. The only problem is I've tired this with no luck so far, as i am very ...
0
votes
1answer
176 views

Simple XSLT at client side using Jquery / javascript

I have this: <Item name="Alpha"> <Field name="CreationDateTime">2012-04-26</Field> <Field name="Material" readOnly="X"> Congress </Field> </Item> <Item ...
1
vote
1answer
124 views

query regarding xslt and javascript

i wrote code in xslt to convert xml file to html file. that html file contains tables(approximately 10 tables), and now my requirement is i need to display how many times the words such as ...
0
votes
3answers
284 views

Using JQuery to hide columns with no data (including header) with same table ids

I have a xslt template that creates HTML tables based off an element attribute. The template ids the table as detailTable. I can have several tables with this same id. I'm using jQuery to hide columns ...
0
votes
0answers
135 views

Jquery is not working in Xsl

I have autocomplete function. I tested it on normal aspx page. But now i have to put it in xsl. I tried many ways but didnt work. I also have javascripts in xsl and they are working. I tried ...
0
votes
0answers
149 views

XMLStreamWriter,StreamingOutput Jersey - Apply XSL

I have a Jersey rest service/spring using springservlet which returns a streamingoutput of xml content. I am trying to apply xsl @ the server side ( I understand this might be a problem since I also ...
0
votes
0answers
181 views

jQuery XSLT Plugin not outputting

Here is the XML file/scheme: <?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE cXML SYSTEM "http://xml.cXML.org/schemas/cXML/1.2.023/cXML.dtd"> <cXML xml:lang="en-US" ...
0
votes
1answer
37 views

How to replace custom attributes with jquerys data() method, inside XSLT?

I have the following input element: <input type="radio"> <xsl:attribute name="name"> <xsl:value-of select="../../os:Row_ID "/> </xsl:attribute> ...
0
votes
3answers
123 views

How to apply a jquery call to only to the image clicked, not the entire page

I am using xslt and javascript to show a table of data. One of my pieces of table data is an image which i am using as a button, this button is in a for-each tag so it appears in each instance of data ...
0
votes
2answers
275 views

Javascript XSLT Transformation with XML stored in a variable

I need to transform an XML string using XSLT in Javascript. While the XSLT is stored in its own file, the XML is part of a bigger XML document, and therefor stored as a string in a variable. My ...
0
votes
1answer
172 views

Changing the content of a node dynamically in XSL with jQuery or Javascript

I have a XML file with differents nodes and in each node (each node has a unique attribute) some information. In the XSL file I created a table with the names of the nodes, and want to show/hide the ...
0
votes
1answer
390 views

How to manipulate with UL with jQuery in XML+XSL generated HTML?

This is the XML: <?xml version="1.0"?> <?xml-stylesheet href="a.xsl" type="text/xsl"?> <root/> This is the a.xsl stylesheet: <xsl:stylesheet ...
1
vote
3answers
106 views

Obtain page sourceCode

I have a page wich contains a XSL as it's source code. Is there any way to get the page source code (as seen on right-click->show source code in IE)? EDIT: The page source code IS a XSL! I need to ...
-1
votes
1answer
349 views

hide the link text when href value is empty

I need to hide the Link text. if href is empty, hide the Link Text. The XSL code made this a little complicated. <xsl:element name="a"> <xsl:attribute name="href"> <xsl:if ...
0
votes
2answers
227 views

How to check Jquery is already loaded in the page in xslt

I need to check whether the Jquery.JS is loaded ,if not then load it. The below code works fine in my .aspx file, but i need to implement the same in my .xslt also.Its giving error while running in ...
1
vote
2answers
137 views

How to extract a specific part from XML

I have an XML file from which I have to extract a specific part based on the id attribute. Input XML <root> <item id="id_1" state="closed"> <content> ...
0
votes
1answer
174 views

Browser-based manipulation of XML documents via jQuery

Background XSL translates an XML document into a stylized web page. The user can add new elements (and attributes) to the XML document through a form displayed using a jQuery dialog. The XML ...
0
votes
1answer
594 views

Problems mixing javascript and jquery with XSL transformations, or something with function parameters?

I'm trying to have navigation buttons on my page load content files, but a couple of these files are XML and need to be styled with XSL transformations. I've had success in the past using the XSL On ...
5
votes
3answers
322 views

Fast Natural Sort for Large XML File in Browser?

I have a problem right now that is the result of current limitations on a server our team does not control. We have a job that should have be done by database but we're forced to use a XML file and ...
0
votes
1answer
271 views

Provide Dynamic ID in jQuery inside XSLT

I want to add my jQuery code inside my XSLT, that isn't the problem, the problem is....I need to provide Dynamic ID in my jQuery code. I am using XSLT's variable to provide it but don't know exactly ...
0
votes
1answer
396 views

JQuery .load() not working when rendered from an XSL file

I have an HTML file: <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>orientation test</title> <script language="javascript" type="text/javascript" ...
0
votes
1answer
457 views

Calling ExpGroupBy using jQuery for specific group

I'm executing a click event using jQuery that should expand a certain group. The code is: 01.<xsl:if test="not($hidedetail)" ddwrt:cf_ignore="1"> 02. <a href="javascript:" ...
1
vote
2answers
375 views

XSLT for filtering XML documents with javascript

I want to use some kind of XML filtering, using javascript w/ jQuery. I'm not very familiar with xslt yet. I've seen that there's always a XML document and a certain style (XSL) for that document. ...
0
votes
1answer
137 views

Check contents of div to apply a particular ID

I'm using XSLTs to basically take some basic HTML and implant some CSS so that the resulting file is the original file + the embedded CSS as one single self contained file. No problems so far, all ...

1 2