| Author | Messages | |
dscoduc
 Member Posts:3
 | | 11/25/2007 9:22 PM |
Alert | I was looking for some information on how to create a XLS layout template for my result set. Does anyone know of a good designer that helps simplify the creation of templates for use in this module?
Thanks. | | | |
| fivegg
 Member Posts:1
 | | 07/02/2008 7:29 PM |
Alert | Here is a sample.But sqlview isn't support paging when using xsl file. <?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="html" encoding="utf-8"/> <xsl:template match="/SQLData"> <table border="1"> <tr> <th>title</th> <th>type</th> <th>email</th> </tr> <xsl:apply-templates select="Rows" /> </table> </xsl:template> <xsl:template match="Rows"> <tr> <td><xsl:value-of select="title"/></td> <td><xsl:value-of select="type"/></td> <td><xsl:value-of select="email"/></td> </tr> </xsl:template> </xsl:stylesheet> | | | |
|
|
| You are not authorized to post a reply. |
|
|
|