Tagged Questions
2
votes
0answers
376 views
How to correctly process XSL transformation in IE and get result as a document fragment
I need to do XSL transformation in the browser using JavaScript.
When i'm doing this in the modern browsers, such as FF or Chrome i can do something like this:
var proc = new XSLTProcessor();
...
1
vote
0answers
108 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 ...
1
vote
0answers
606 views
Hide/Show element with javascript generated by XSL
I have a xml file containing some data. I would like to display an "extended" view of the data or an overview. I manage to display the extended view with XSL and I am not fighting with javascript to ...
0
votes
0answers
9 views
Using Swap image JS from Dreamweaver into a XSLT page
NOTE: Shown code are fragments of a whole working code! (Irrelevant closing tags are omitted like "</table>").
I am new to XSLT and I am working on generating an image gallery (intended gallery ...
0
votes
0answers
40 views
Display or hide the xml elements using XSL onclick of checkbox
I am new to XSLT. I am trying to hide the content of the XML element on the click of a checkbox.
Here is my XML
<ilr>
<seat>
<loadcases>
<loadcase id="a">
...
0
votes
0answers
105 views
AngularJS - json data from view to controller
I get my html template + json data from xsl translator , it is dynamic , it looks like html code plus some data in stringified json. The question is: in what way i put the json string in html code , ...
0
votes
0answers
35 views
Chrome isn't updating when I change pagination size(XSL and Javascript)
Ok, so I have this select menu that has 10,20,50, and 100 on it, these numbers represent how many items show up on a list. This works fine in IE, but I am not sure why it is not working here. My ...
0
votes
0answers
46 views
GET request for xsl works in Firefox/Opera/GoogleChrome/Safari/ and even IE9, but not in IE 8 or IE10
I am trying to populate a div through JS/XSLT in a GET request. See code below:
function loadXMLDoc(dname)
{
if (window.XMLHttpRequest)
{
xhttp=new XMLHttpRequest();
}
else
{
xhttp=new ...
0
votes
0answers
81 views
How to Disable Images and Hyperlinks when Exporting to Excel?
I am using a Javascript function to export my table contents to a Excel Spreadsheet. However, Inclusive of all the data in the table, I have a few images and Hyperlinks which need to be removed in the ...
0
votes
0answers
44 views
Java script in xslt
In xslt,i have to assign some values to particular element and it should get print using java script.
eg123 is my input element data and
I want out put in such a way that the element should ...
0
votes
0answers
65 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 = ...
0
votes
0answers
37 views
Need to call a document.URL within an HTML <option> and combine with a parameter including some XSL
Code that I'm working with. I'm trying to find a way to append the full URL including parameters depending on a select onchange. This code appends it to the Base URL and discards the parameters. JS ...
0
votes
0answers
97 views
Ive got a probleme with my XML school project
Error: NS_ERROR_FAILURE: Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIXSLTProcessor.transformToFragment]
I dont understand where is my error and why... yesterday my project was ...
0
votes
0answers
22 views
designing xsl for a list of objects
I have a xml file but I am not sure how I can generate a xsl file that will allow me to transform the data in the xml file appropriately onto a jsp.
<?xml version="1.0" encoding="UTF-8" ...
0
votes
0answers
123 views
How to get element data of an xml file, from one xsl style sheet to another xsl sheet using javascript or any similar method
How to get element data of an xml file, from one xsl style sheet to another xsl sheet using javascript or any similar method.
Hi
I am very new to xml and xsl style sheet.
I have two html pages ...