List comparison
Tue, 9 May 2006 11:41:43 +0300
Hi,
How can I compare two lists?
Ordering should be ignored.
Duplicates are allowed and should be ignored.
For example:
<list1>
<item name="aaa"/>
<item name="bbb"/>
</list1>
<list2>
<item name="aaa"/>
<item name="bbb"/>
<item name="ccc"/>
</list2>
I'd l ...
|
bitwise & operation in xsl
8 May 2006 04:57:59 -0700
Hi,
Can I test something like
<xsl:if test="(@access & 1) = 1">
</xsl:if>
Does xsl support bitwise operation like |, &, ^ etc.
Thanks,
Biswaranjan
...
|
javascipt in xsl not working
8 May 2006 04:07:27 -0700
i can't figure this one out for the life of me, so i hope someone here
can help
this is the setup:
i have an asp page that retuns xml that is then transformed into an
xhtml page by an xsl file
in that xhtml page i use ajax to load and transfom more xml into
xhtml/javascript which is appended to the docum ...
|
how to read image contents from XML using xsl
7 May 2006 19:10:16 -0700
Hi group,
I am new to xsl and xml technologies. here i am facing some problem
now. the problem here is that
I am using C# code to read the image contents and put in to xml file
under one tag(named as "image").and also i added reference to one xsl
file. In that xsl file i am reading and formatting the values ...
|
xslt not working. Please help!
Fri, 5 May 2006 14:15:32 -0500
<?xml version="1.0" encoding="UTF-8"?>
<A xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<B1>
<C1>
<D1>data1</D1>
</C1>
<C2>
<D2>data2</D2>
</C2>
</B1>
</A>
==============
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.
org/1999/X ...
|
Putting xml in attribute
Thu, 4 May 2006 14:21:14 +0100
Hi to all,
I have an xml document which has the contents :
<series>
<dataset id="dataset_1" name="Client - number unplanned">
<data id="dataset_1_1" value="1"/>
<data id="dataset_1_2" value="2"/>
<data id="dataset_1_3" value="3"/>
<data id="dataset_1_4" value="4"/>
...
|
A very confused noob has a question.
Wed, 3 May 2006 19:18:23 -0500
Hey all,
First off, I must admit that this xsl stuff is really throwing me around
in a loop. So far it is more than a tad over my head. I am pretty sure
that what I am trying to do can be done, I just can't seem to find any
straight (well, easy to grasp) info on it.
I have xml like this;
<orders>
< ...
|
|
|
transformNode throws "Access is denied" error
Wed, 03 May 2006 15:28:25 -0500
I was planning to use an XSL stylesheet to transform complicated XML
responses to queries into easier-to-read dialogs. Yesterday, it
worked for me but not my client. Today, the same code is giving me an
access is denied error when I call transformNode()
I asynchronously get both the XML document and the XS ...
|
formatting numbers
Wed, 03 May 2006 06:08:38 -0700
I have an xsl file that I am using to show a number of rows from a
database. One of the columns needs to be in a numeric format with 2
decimal places (x.xx). How do I format a number in XSL?
<xsl:for-each select="row">
<tr>
<td>
<a
href="ViewOpportunity.as ...
|
Import Data From xml File to Database
Wed, 3 May 2006 03:28:01 -0700
Hi
I am sorry but this is going to be a bit of a lengthy post. I am new to xml
I have been supplied an xml file that contains data I need to import into a
database. If I just import the file as is I lose any relationship between the
parent and child nodes when the import routine in Access 2003 creates th ...
|