I'm using AspDotNetStorefront (this is why I have to use xsl) and my client would like to be able to sort products in a category. I decided to use tablesorter & use jsrender to render out the template.
I can do everything but create a special link because the xsl is stripping one of my curly braces for the jsrender template.
So I've got an object w/ productImage like /images/blah.jpg and the following works correctly.
<td>{{:productImage}}</td>
Great - so I try to put in in a link:
<td><a href='{{:productImage}}'>See the image</a></td>
And the xsl outputs my template to be:
<td><a href='{:productImage}'>See the image</a></td>
So it's not being rendered correctly. I've tried all kinds of ideas over the last couple hours but cannot get this to work correctly. How do I keep XSL from stipping my curly braces?