I have some questions about an XML project that im working on that I'm feeling rather rough around the edges on...
Quick overview... I'm scraping a page and through xpath creating an xml document... In that xml document I'm loading an XSL to transform everything into 3 tables... due to the flow of the xml, the natural sort order is by the column 'name'
Ok, so each of these table headers have links that I would like to use to drive dynamic sorting
e.g.
?table=active&sort=date
obviously, when I click them they do nothing
so i did some googling and ran across this website:
http://www.contentwithstyle.co.uk/content/dynamic-tables-with-xslt
... i followed his logic by adding the params (named to the QS vars) to my default template and tried putting them in my xsl:sort tags for each 'table' and they do nothing... when i attempt to output the param value, its always empty
So, my question is, am i missing something? I have seen the xsl functions and cant help but wonder if this isnt all tied together somehow...