Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. rotzooischaap

    Sort data from multiple xml documents

    Is there any way to sort the data from all files together? Perhaps by using XQuery?
  2. rotzooischaap

    Sort data from multiple xml documents

    The ones I'm concerned about are MC.xml kandidaat 1.xml kandidaat 2.xml kandidaat 3.xml MCcijfers.xsl MC.xml is the data.xml in your example
  3. rotzooischaap

    Sort data from multiple xml documents

    I just figured out that your options don't work for me. In all xml files there's only one number and all these together need to be sorted. With your option numbers can only be sorted per xml file. If you change your example numbers to: (note: I only changed two int's: in data_01 I changed 2 > 5...
  4. rotzooischaap

    Sort data from multiple xml documents

    I didn't really understand what you ment, but I copied your examples and constructed the data_01/02 and data.xml and the xsl and tested all three options. The second and third one worked so I tried them on my one files, but didn't get it to work. Perhaps you can see whats wrong. You can get the...
  5. rotzooischaap

    Sort data from multiple xml documents

    I finally was aible to test you options, but all three option gave back three dots in a row. <?xml version="1.0" ?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="xml" indent="yes" encoding="utf-8" /> <xsl:template match="/">...
  6. rotzooischaap

    Sort data from multiple xml documents

    I don't have to show you the xml, because for this problem that's almost exactly how my xml looks like. Only difference is that <root> <file>data_01</file> <file>data_02</file> </root> looks like <talents> <talent>data_01</talent> <talent>data_02</talent> </talents> and that I...
  7. rotzooischaap

    Sort data from multiple xml documents

    Already tried that. Stupid that I didn't post that example as well, here it is: <xsl:template match="talents"> <xsl:for-each select="talent"> <xsl:variable name="talent" select="concat(.,'.xml')"/> <xsl:apply-templates...
  8. rotzooischaap

    Sort data from multiple xml documents

    I'm trying to sort number data from multiple xml documents. I've tried a couple of possibilities like putting sort in a for-each loop and in a apply-templates. Every time the numbers come up, but the data won't sort. Example: <xsl:template match="talents"> <xsl:for-each select="talent">...

Part and Inventory Search

Back
Top