Click here to Skip to main content
15,917,522 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: SMTP Programming Pin
Dominick Marciano11-Dec-12 11:20
professionalDominick Marciano11-Dec-12 11:20 
QuestionXSLT Transforms - how to get just some of in a for-each Pin
QuickBooksDev8-Dec-12 2:26
QuickBooksDev8-Dec-12 2:26 
We use XSLT to convert various XML files into tab delimited.

Some of the XML input files have a variable number of options. Sometimes none, others 1,2,3 or more.

This makes the formatting difficult since there is also a header row that is created in the XSLT file that must have the exact number of columns and proper header context.

So the question is how to get this formatted correctly since if we provide for 2 sets of opts (from the W3Schools tryit) in the header row how to get the for-each to stop at 2.

<cd>
&lt;title>Eros&lt;/title>
<artist>Eros Ramazzotti</artist>
<country>EU</country>
<company>BMG</company>
<price>9.90</price>
<year>1997</year>
</cd>
<cd>
<opts length="3">
<opt><name>Nm1</name><val>111</val></opt>
<opt><name>Nm2</name><val>222</val></opt>
<opt><name>Nm3</name><val>333</val></opt>

</opts>

Typical for-each
<xsl:for-each select="opts/opt">
<td><xsl:value-of select="name"/></td>
<td><xsl:value-of select="val"/></td>
</xsl:for-each>

In this case there will be 3 sets of opts but 2 sets of headers and all data after this will be off.

Tried using xls:when test="@length =...' but don't see a way of just getting 2 of the 3 opts.

Can anyone help?

Thanks
AnswerRe: XSLT Transforms - how to get just some of in a for-each Pin
Chris Grove13-Dec-12 19:46
Chris Grove13-Dec-12 19:46 
GeneralRe: XSLT Transforms - how to get just some of in a for-each Pin
QuickBooksDev17-Dec-12 0:42
QuickBooksDev17-Dec-12 0:42 
GeneralRe: XSLT Transforms - how to get just some of in a for-each Pin
Chris Grove17-Dec-12 3:43
Chris Grove17-Dec-12 3:43 
GeneralRe: XSLT Transforms - how to get just some of in a for-each Pin
QuickBooksDev17-Dec-12 4:55
QuickBooksDev17-Dec-12 4:55 
GeneralRe: XSLT Transforms - how to get just some of in a for-each Pin
Chris Grove17-Dec-12 5:43
Chris Grove17-Dec-12 5:43 
QuestionPop Up JQuery Quick Link Pin
Akinloluwa5-Dec-12 22:02
Akinloluwa5-Dec-12 22:02 
AnswerRe: Pop Up JQuery Quick Link Pin
vbmike7-Dec-12 4:09
vbmike7-Dec-12 4:09 
AnswerRe: Pop Up JQuery Quick Link Pin
ZurdoDev12-Dec-12 4:41
professionalZurdoDev12-Dec-12 4:41 
Question[HELP] Whois can using PHP to generate this one? Pin
jimmy.suharry4-Dec-12 21:37
jimmy.suharry4-Dec-12 21:37 
AnswerRe: [HELP] Whois can using PHP to generate this one? Pin
Zamshed Farhan12-Jan-13 5:54
Zamshed Farhan12-Jan-13 5:54 
QuestionTool for big WEB project with huge loads Pin
Junoli2-Dec-12 9:37
Junoli2-Dec-12 9:37 
AnswerRe: Tool for big WEB project with huge loads Pin
User 17164922-Dec-12 10:47
professionalUser 17164922-Dec-12 10:47 
Questionselect an item in gridview Pin
ptvce2-Dec-12 1:50
ptvce2-Dec-12 1:50 
AnswerRe: select an item in gridview Pin
Richard MacCutchan2-Dec-12 3:00
mveRichard MacCutchan2-Dec-12 3:00 
Questioni php question Pin
gamaan1-Dec-12 4:00
gamaan1-Dec-12 4:00 
AnswerRe: i php question Pin
gamaan1-Dec-12 4:03
gamaan1-Dec-12 4:03 
AnswerRe: i php question Pin
Zamshed Farhan12-Jan-13 6:03
Zamshed Farhan12-Jan-13 6:03 
QuestionHTML Pin
DivyamS30-Nov-12 19:35
DivyamS30-Nov-12 19:35 
AnswerRe: HTML Pin
Zamshed Farhan15-Jan-13 4:21
Zamshed Farhan15-Jan-13 4:21 
Questionthe protocol 'net.pipe' is not supported-WCF Pin
mallikharjuna22128-Nov-12 0:50
mallikharjuna22128-Nov-12 0:50 
AnswerRe: the protocol 'net.pipe' is not supported-WCF Pin
User 171649228-Nov-12 1:38
professionalUser 171649228-Nov-12 1:38 
GeneralRe: the protocol 'net.pipe' is not supported-WCF Pin
mallikharjuna22128-Nov-12 2:34
mallikharjuna22128-Nov-12 2:34 
GeneralRe: the protocol 'net.pipe' is not supported-WCF Pin
User 171649228-Nov-12 3:11
professionalUser 171649228-Nov-12 3:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.