group and find relative Min value
3 Jun 2006 05:19:22 -0700
I have this xsl
<?xml version='1.0' encoding='utf-8' ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="html"/>
<xsl:key name="RouterList" match="Router" use="Supplier"/>
Template for our root rule -->
<xsl:template match="/">
<xsl:apply-templat ...
|
xpath problems?
Fri, 2 Jun 2006 09:13:55 -0700
Code snippet below (shortened for illustration purposes)
My problem is that if I move the <xsl:value-of statement to the first line
under <xsl:template match="/"> then it returns the @href attribute as I
would expect. But if I leave it as shown below, it doesn't return a value,
but I don't understand why. ...
|
Change a variable after declaration
Fri, 2 Jun 2006 08:56:21 -0700
Is it possible to change the value of a variable after it's been declared?
...
|
Sort By Variable or calculate results
2 Jun 2006 06:52:57 -0700
This is a segment of my xsl file:
I need to sort by a calculated variables...
But I'm not sure if it's is possible:
<xsl:variable name="eur_currency"
select="number(document('valute1.xml')/CommandList/GetCurrencies/CurrencyList/Currency/Code[.
='EUR']/following-sibling::UsdRate[1])"/>
<xsl:for-each
se ...
|
Help Passing Param of string length and using it in a predicate He
Fri, 2 Jun 2006 02:50:02 -0700
Hi All,
please bare with me I have been learning xls and xpath now for 5 days and
have not got to gripps with all the lingo yet :)
Bascially I have 2 templates one calling the other:
<xsl:for-each select="hea/Batch/Rec[not(listID =
preceding-sibling::Rec/listID)]">
<xsl: ...
|
Extra new lines being fed into my output text document when transf
Thu, 1 Jun 2006 22:35:01 -0700
Hi,
I have this in my .xsl file:
<xsl:for-each select="/File/Refs/Ref">
<xsl:value-of select="@name"/>
</xsl:for-each>
And when I use the transform call in C# the outputed text document looks
like this:
Me
You
Who
Them
How do I get it to where there is no new-line in between th ...
|
How to show tooltip on XSL
Thu, 1 Jun 2006 15:20:01 -0700
In the following code, how to show tooltip of the column "DetailedDescr" when
user moves mouse on "description" column?
<xsl:for-each select="results/bulletin">
<tr>
<td valign="top" nowrap="nowrap"><xsl:value-of
select="reported"/></td>
<td align="center" valign="top" nowrap ...
|
|
|
Does VS2005 support <xsl:function>??
Thu, 1 Jun 2006 14:10:02 -0700
Under VS2005, the following code snipet generates an error indicating that
<xsl:function> is an invalid tag.
Can anyone confirm that VS2005 does not support xsl:function? This would
make sense, since i can'f find any reference on the latest latest MSDN.
Is there an alternative to <xsl:function> that all ...
|
Help with strategy for a peculiar muenchian grouping problem
1 Jun 2006 05:36:03 -0700
Hi all,
I've got a bit of a head scratcher here.
Basically I've got an XML file with items in it like so
<item>
<name>Valuable1_a</name>
<amount>10</amount>
</item>
<item>
<name>Valuable1_b</name>
<amount>10</amount>
</item>
<item>
<name>Valuable2</name>
<amount>10</amount>
</item>
...
|
warning message
1 Jun 2006 01:35:16 -0700
Hi,
I'm doing a tranform with saxon (which goes fine btw).
I get the following warnings:
Warning: org.xml.sax.SAXParseException: Using original entity
definition for "<".
the same warnings for ">", "&", """ and "'". Does
anybody know what it means and what can i do about it?
Than ...
|