select case sensitive
Wed, 31 May 2006 13:47:45 -0700
i've found that seomthing like <xsl:value-of
select=/*[local-name()='element']" /> is case senstive, so it won't match
on 'Element'. How can I make this case insensitive?
...
|
split parts list into groups
Wed, 31 May 2006 15:20:57 -0500
I have an XML parts list in ascending numeric order. I need to convert this
into a single HTML with multiple UL elements such that parts 0 through 100
are placed into the first UL, 101 through 249 into the second and so on. How
is the best way to do this? Would I create a template for each group and
have them ...
|
help please with <xsl:for-each select> on a table
30 May 2006 11:59:16 -0700
this is part of my xsl sheet, is part of a table
<xsl:for-each select="guitars/acoustic">
<tr>
<td>
<xsl:value-of select="name"/>
</td>
</tr>
</xsl:for-each>
the outpot will always display the "name" elements in a vertical way,
creating a new row for every element with the ...
|
Different table columns for odd and even elements
Tue, 30 May 2006 13:52:41 -0500
I have a XML doc similar to the following:
<Person ID="A" Name="Steve">
<Person ID="B" Name="Jane">
<Person ID="C" Name="Joe">
<Person ID="D" Name="Bob">
<Person ID="E" Name="Dan">
<Person ID="F" Name="Harry">
I want to represent it in a table as follows:
Person Name Person Name
A ...
|
document() and wildcards
Tue, 30 May 2006 09:38:21 -0700
I've got 24 xml documents, all based around the same schema, and I want to
build an xslt that aggregates them all, is it possible to do somehow with
the document() function and wildcards? I have tried document('*.xml') but
that fails.
...
|
XSLT Format Number - Bug?
30 May 2006 07:23:31 -0700
Hi,
I'm using the XSLT format-number function and i've hit a problem.
Numbers only appear to be formatting to 15 significant digits. For
example, I've got a requirement to format numbers from a database to 7
dec places with suppressed leading zeros. So I use
format-number(number, '#0.0000000'). When the numbe ...
|
Ignore attributes with for-each loop
30 May 2006 01:12:50 -0700
I have something like the following:
<CT_apicreditreport>
<applicant reporttype="3" tpoptout="1" xmlns="urn:aaa.bbb.ccc.dd">
<test>
1121
</test>
</applicant>
<applicant reporttype="3" tpoptout="1" xmlns="urn:aaa.bbb.ccc.dd">
<test>
1121
</test>
</applicant>
</CT_apicreditreport>
...
|
|
|
Populating a list box from the same (or a different) xml file
Sun, 28 May 2006 16:15:45 +0200
I have an XSL file which nicely displays the data from an XML file
(including some javascript sorting).
Now I would like to introduce a simple function to allow the data to be
filtered. My idea is that I will display a list box (about the data
table) populated from the same XML file and containing each o ...
|
relative Nodevalue (xpath)
28 May 2006 02:27:33 -0700
I have this xml file:
<Currency>
<Name>Angolan New Kwanza</Name>
<Code>AON</Code>
<UsdRate>89.7704</UsdRate>
</Currency>
<Currency>
<Name>Bhutan Ngultrum</Name>
<Code>BTN</Code>
<UsdRate>44.5778</UsdRate>
</Currency>
I Need to get the Code = AON and get the relati ...
|
elementar date conversion
28 May 2006 00:34:54 -0700
I need to do a conversion forma minute value to a hour format.
I believe is necessarya function able to do this, but I try for example
to use a simple div:
111 min Div 60 = 1,92
bur real we know that the value of 111 min in hour is 1 h 55 min
How can i solve this.
thanks a lot.
...
|