[dynamic variable for hide content ?]
Tue, 20 Feb 2007 10:01:38 +0100
hello,
i search how hide a HTML section if a condition is not matching.
my dynamic XML :
<title>a title</title>
<articles>
<article code="B">Ball</article>
<article code="C">Car</article>
<article code="CA">Cat</article>
</articles>
my XLS ( output HTML ) :
<table>
<tr>
<td>
<xsl: ...
|
[dynamic variable for hide content ?]
Tue, 20 Feb 2007 10:01:38 +0100
hello,
i search how hide a HTML section if a condition is not matching.
my dynamic XML :
<title>a title</title>
<articles>
<article code="B">Ball</article>
<article code="C">Car</article>
<article code="CA">Cat</article>
</articles>
my XLS ( output HTML ) :
<table>
<tr>
<td>
<xsl: ...
|
Free Flash Games
Tue, 20 Feb 2007 00:52:36 GMT
Free Flash Games http://www.clipplay.com/ fun videos games and more.
Fun flash games. Free flash games videos and more.
...
|
Mail Merge with Word XML?
19 Feb 2007 13:30:09 -0800
Hi all, I am trying to do something I thought was going to be pretty
popular, but I am having trouble finding examples.
I have created an XML schema of data I am going to extract from the
database
I have users create a MS Word template doc
The users attach my XML schema to the doc and insert various element ...
|
Whitespace in XSL Output
19 Feb 2007 07:47:28 -0800
I'm having a problem with getting my transform to not display
whitespace.
For example, I have the following which is formatted within VS.NET
2005 (Pretty-Print)
<span>
<xsl:attribute name="id">
<xsl:value-of select="@Id" />
</xsl:attribute>
</span>
This gets output to <span id="
...
|
XSLT variable usage
Mon, 19 Feb 2007 05:04:17 -0800
Hi
I have the following xslt.
<xsl:for-each select="$lstTestRequestGRPByCatCollDTandSpecType" >
<xsl:variable name="placerIdentifier"
select="*[local-name()='PlacerID']/*[local-name()='Identifier']" />
<xsl:value-of select="$placerIdentifier" />
<xsl:call-template name="One"/>
<xsl:call-templ ...
|
Translate number to an alphabetic code
Mon, 19 Feb 2007 03:31:31 -0800
I need to translate numbers to alphabetic codes. I am generating an EXCEL
workbook, and I need to generate excel cell references from cell numbers.
For example 1 translates to A
2 -> B
...
26 -> Z
27 -> AA
28 -> AB
etc...
For now I implemented the translation using helper variable containing array
o ...
|
|
|
Determine max. number of sibling elements with same attribute valu
Fri, 16 Feb 2007 07:27:08 -0800
Example XML:
<persons>
<person name="John" age="25" />
<person name="Jack" age="26" />
<person name="Desmond" age="30" />
<person name="James" age="30" />
<person name="Michael" age="30" />
<person name="Theodore" age="22" />
<person name="Fernando" age="22" />
<person na ...
|
Transform a string in many strings
16 Feb 2007 02:05:25 -0800
Hi,
I've got a xml document where a vector [1 ; 2 ; 3 ; 4] is represented
by :
<vector>1 2 3 4</vector>
where the element vector contains a xs:string.
I want to write a xsl file in order to transform this vector into :
<table>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
...
|
Challenging transformation
Fri, 16 Feb 2007 01:43:25 -0800
I'm working on a transformation, but can't seem to find the solution. I've
the following data xml:
<data>
<fieldOrder>
<c/><a/><b/><e/><d/>
</fieldOrder>
<boldFields>
<a/><e/>
</boldFields>
<rows>
<row>
<a>a1</a><b>b1</b><c>c1</c><d>d1</d><e>e1</e>
</row>
<row>
<a>a2</a><b>b2 ...
|