Jump to content

Displaying xml in html


amycwoods

Recommended Posts

I have some XML data that should be displayed as a sortable table. The XSL file works great when previewing in Dreamweaver but when in my XHTML page, the XML data loads but the table is not sortable. Any ideas?The XHTML page can be found:http://www.sonoma-county-music.com/mon_thurs.htmlMy XSL file looks like this:------------------------<?xml version="1.0" encoding="ISO8859-1"?><!-- DWXMLSource="mon_thurs.xml" --><xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><xsl:output method="html"/><xsl:template match="/"><html><head> <link href="mon_thurs.css" rel="stylesheet" type="text/css" /><script type="text/javascript" src="scripts/jquery.js"></script><script type="text/javascript" src="scripts/tablesort.js"></script></head><body> <div id="monThurs"><div id="mthlist"><table id="myTable" class="tablesorter" width="740px"> <tr> <th class="sortable"> DATE</th> <th class="sortable"> DAY</th> <th class="sortable"> TIME</th> <th class="sortable"> NAME</th> <th class="sortable"> LOCATION</th> <th class="sortable"> MAIN ACT</th> <th class="sortable"> GENRE</th> <th class="sortable"> COST</th> </tr> <xsl:for-each select="VENUES/VENUE"> <xsl:sort select="DATE" order="ascending"/> <tr> <td><xsl:value-of select="DATE"/></td> <td><xsl:value-of select="DAY"/></td> <td><xsl:value-of select="TIME"/></td> <td> <a> <xsl:attribute name="target">_blank</xsl:attribute> <xsl:attribute name="href"> <xsl:value-of select="NAME/@VALUE"/></xsl:attribute> <xsl:value-of select="NAME"/> </a> </td> <td><xsl:value-of select="LOCATION"/></td> <td><xsl:value-of select="MAIN_ACT"/></td> <td><xsl:value-of select="GENRE"/></td> <td><xsl:value-of select="COST"/></td> </tr> </xsl:for-each> </table> </div></div></body> </html> </xsl:template> </xsl:stylesheet>The XML file looks like this:-----------------------------<?xml version="1.0" encoding="ISO8859-1"?><?xml-stylesheet type="text/xsl" href="mon_thurs.xsl"?><?xml-stylesheet type="text/css" href="mon_thurs.css" ?><VENUES> <VENUE> <NAME VALUE="http://www.lastdaysaloon.com/santa%20rosa/calendar.html">The Last Day Saloon</NAME> <DATE>02/01/11</DATE> <DAY>Tues</DAY> <TIME>8:00 PM</TIME> <LOCATION>Santa Rosa</LOCATION> <MAIN_ACT>Frank Hannon</MAIN_ACT> <GENRE>Rock</GENRE> <COST>$15.00</COST> </VENUE> <VENUE> <NAME VALUE="http://www.lastdaysaloon.com/santa%20rosa/calendar.html">The Last Day Saloon</NAME> <DATE>02/02/11</DATE> <DAY>Wed</DAY> <TIME>8:00 PM</TIME> <LOCATION>Santa Rosa</LOCATION> <MAIN_ACT>BB King</MAIN_ACT> <GENRE>Blues</GENRE> <COST>$18.00</COST> </VENUE> <VENUE> <NAME VALUE="http://www.lastdaysaloon.com/santa%20rosa/calendar.html">The Last Day Saloon</NAME> <DATE>02/03/11</DATE> <DAY>Thurs</DAY> <TIME>8:00 PM</TIME> <LOCATION>Santa Rosa</LOCATION> <MAIN_ACT>Big Bad Vodoo Daddys</MAIN_ACT> <GENRE>Swing</GENRE> <COST>$18.00</COST> </VENUE> <VENUE> <NAME VALUE="http://www.lastdaysaloon.com/santa%20rosa/calendar.html">The Last Day Saloon</NAME> <DATE>02/07/11</DATE> <DAY>Mon</DAY> <TIME>8:00 PM</TIME> <LOCATION>Santa Rosa</LOCATION> <MAIN_ACT>Big Bad Vodoo Daddys</MAIN_ACT> <GENRE>Swing</GENRE> <COST>$18.00</COST> </VENUE> </VENUES>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...