Tagged Questions
1
vote
2answers
31 views
Maximum number of distinct subelements per node
Using XSLT 1.0, how do I obtain the maximum number of distinct <info> elements that are children of the same <container> element in a structure like the following (if at all possible)?
...
2
votes
1answer
876 views
sharepoint dataview webpart xslt group by left characters of a column
I have a sharepoint 2010 list with a column "proposalID". The values in that column are
5555-01, 5555-02, 5555-03, 6666-01, 6666-02, etc.
I want to group by the 4 characters to the left of the dash. ...
1
vote
0answers
87 views
muenchian grouping in ContentQueryMain.xsl
I'm Newbie in Sharepoint 2010 ,and I had to deal with ContentQueryMain.xsl which I hardly understand what going on there and what part goes where .
I need to group result by Category , then sort them ...
0
votes
1answer
75 views
xslt grouping based upon element
I have a question about grouping in xml.
The first problem is that the xml does not have the structure for grouping lines, the order is OK.
Second problem is the fact that the elements for ...
0
votes
2answers
137 views
Replace XML values with sequential alphabets in XSL transform
Given the input XML
<FlightOptions>
<item>
<Fares>
<item>
<FareClass>T</FareClass>
<Fare>100</Fare>
...
-2
votes
2answers
150 views
XSLT Parent child traversing not working properly [closed]
It is real scenario only i have changed the data. I have below parent child relationship xml.I am trying to convert the below xml using XSLT.I am able to trverse the parent data but not able to give ...
1
vote
3answers
104 views
XSLT 1.0 - group by unknown parent and parent sibling
Following on from my query regarding XSLT 1.0 - Concatenate known child nodes, group by unknown parent , and in a similar predicament to Group/merge childs of same nodes in xml/xslt when repeating ...
0
votes
0answers
71 views
XSLT 1.0 Multi-Level Grouping
Im having troubles with an XSLT (version 1.0) sheet, which needs to group on multiple parents attributes.
Here is an example of the feed.
<data>
<event name="x">
<market ...
0
votes
1answer
74 views
Grouping already grouped records and filling information from group-head with XSL 1.0
I am trying to transform an XML output from our accounting system into an XML that can be imported into Access. Unfortunately Access only accepts XSL 1.0 for transformation, so I have asked already ...
0
votes
1answer
66 views
Grouping the nodes at three levels and summing one node
Please follow the comments in the sample xml it explains everything I need, it is having three scenerio's check each scenerio in the output xml in the same sequence.
Input XML
<!-- In the ...
0
votes
2answers
124 views
Grouping of a well defined flat XML for Access import (XSLT 1.0)
I have an output from our local accounting system, which consists of an envelope tag and just a repeated sequence of the fields, but not grouped. I have no prior experience in XSL but have been trying ...
0
votes
1answer
81 views
xslt1.0 (firefox): counting nodes with different value, muenchian-grouping?
Each new problem that I think I will be able to solve, it turns out that I can't.
So, with the following XML I would like to know how many different nodes are there that have a different @num ...
1
vote
1answer
451 views
xslt 1.0, select group of nodes with key
I want to select nodes based on some variables.
The XML code:
<data>
<prot seq="AAA">
<node num="1">1345</node>
<node num="1">11245</node>
...
2
votes
1answer
108 views
XSLT-1.0 how to eliminate redundancy, but selecting one particular node instead of the first
I have this XML
<data>
<peptides>
<peptide>
<accession>111</accession>
<sequence>AAA</sequence>
...
2
votes
3answers
230 views
Use XSLT 1.0 to group XML elements into buckets, in order, based on some criteria
Say I had some XML that I wanted to convert to HTML. The XML is divided into ordered sections:
<?xml version="1.0" encoding="utf-8"?>
<root>
<section attr="someCriteria">
...
3
votes
1answer
365 views
xslt 1.0 grouping by attribute (muenchian)
I have problems with xslt and grouping the following xml
<?xml version="1.0" encoding="ISO-8859-1" ?>
<PosXmlResponse ver="2.0" usr="test" typ="search" lng="de" >
<search typ="pau" ...
0
votes
1answer
619 views
XSLT 1.0 Grouping on values of nodes with same name at the same level but different values
I could use some help.
Here is an illustrative example of my XML:
<items>
<item>
<name>Thing 1</name>
<colors>
<color>white</color>
...
1
vote
2answers
476 views
Grouping every 3 items in xslt 1.0
I'm having troubles to figure out a way to group items xslt 1.0.
I have a source xml similar to the one below:
<client name="client A">
<project name = "project A1"/>
<project ...