html tags within xsl:value-of
17 May 2006 07:49:04 -0700
I am trying to send html tags via a variable into an XSL stylesheet. I
would like to put all of the HTML formatting into my variable and
minimize the work that needs to be done within the stylesheet.
My problem is that when I try to pass HTML formatting into an
<xsl:value-of> tag the < and > characters are ...
|
Problem with the xml declaration in output XML
Tue, 16 May 2006 13:13:17 +0200
Hi all, I have a problem with the output XML of a XSLT
I need that the XML has in the first line of the output the declaration:
<?xml version="1.0" encoding="ISO-8859-1"?>
Testing this with an XSLT editor that uses the msxml2 parser, I achieve this
result. But when I use this transformation inside an exec ...
|
ignoring child elements
15 May 2006 13:22:17 -0700
How would I construct the select attribute of a value-of statement to
select only the text immediately below an element of mixed type (eg,
foo below)? That is, I want to ignore whatever might be contained in
any child elements and grab only the text that is a peer to the
elements? Relative to the markup below, ...
|
Xsl Grouping with condition
Mon, 15 May 2006 20:47:23 +0530
Im doing a transform using following xml.
<Root>
<Items>
<Item Txt="Item1" ID="1">
<RI>
<R E="10"></R>
<R E="10"></R>
<R E="12"></R>
</RI>
</Item>
<Item Txt="Item4" ID="4">
<RI>
<R E="14"></R>
<R E="14"></R>
<R E="12"></R>
</RI>
</Item>
<Item Txt="Item2" ID="2">
<RI>
<R E="12"></R>
<R E ...
|
upper case attributes values
Mon, 15 May 2006 07:54:01 -0700
Hi all,
Is there possible to change all attributes and all elements values to upper
case?
I know nothing about xml document structure.
Sample input:
<class name="tProcesses" classtype="tabledbmetaclass"
tablename="tdapProcesses" >
<caption>aaa</caption>
<description>bbb</description>
.....
</class> ...
|
Outputting ASP.NET tags using XSLT
Mon, 15 May 2006 00:05:01 -0700
I have this tag control:-
<%@ Register TagPrefix="Tittle" Namespace="Tittle.Controls"
Assembly="Tittle.Controls" %>
and i want to use it in my XSl
i tried using:-
<xsl:text disable-output-escaping="yes"><%@ Register
TagPrefix="Tittle" Namespace="Tittle.Controls"
Assembly="Tittle.Controls"%>
</x ...
|
Help needed with XSLTransformation
14 May 2006 22:11:11 -0700
Hi Googles,
I am facing some problem with XSLTransformation. See i have xml file in
that i am placing binary contetns of image in to it. How to config or
write xsl file to display the image
my xml file is like that
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="TestImage.xsl"?>
<Look>
...
|
|
|
A group/summary question using Muenchian Method
13 May 2006 09:30:14 -0700
I want to transform the follwoing xml and goup the HourlyQuantity by
Entity, HourlyBeginTime and HourlyEndTime :
<EDI>
- <Detail>
<UnitOfMeasure>KW1</UnitOfMeasure>
<DirectionOfFlow>U</DirectionOfFlow>
<Entity>Cargill</Entity>
<EntityQualifier>ZEW</EntityQualifier>
<QuantityQualifier>Z05</QuantityQualifier ...
|
A group/summary question using Muenchian Method
13 May 2006 09:30:09 -0700
I want to transform the follwoing xml and goup the HourlyQuantity by
Entity, HourlyBeginTime and HourlyEndTime :
<EDI>
- <Detail>
<UnitOfMeasure>KW1</UnitOfMeasure>
<DirectionOfFlow>U</DirectionOfFlow>
<Entity>Cargill</Entity>
<EntityQualifier>ZEW</EntityQualifier>
<QuantityQualifier>Z05</QuantityQualifier ...
|
using more than one xsl:apply-templates directive
Sat, 13 May 2006 07:01:59 GMT
I tried to use more than one xsl:apply-templates directive inside a
single xsl file, as show belowe.
It works, but I'm not sure this is ok.
I should expect that , for each apply-templates on the given selections
I got the whole template.
So for each value found I should have all the execution of the who ...
|