Developer’s Guide

Table Of Contents
Using FileMaker Pro XML to deliver your data 7-11
<xsl:apply-templates/>
</TR>
</xsl:template>
<xsl:template match="FIELD">
<TD ALIGN="CENTER" BGCOLOR="#336666">
<FONT FACE="Verdana"
COLOR="#FFFFFF"><B><xsl:value-of
select="@NAME"/></B></FONT>
</TD>
</xsl:template>
<xsl:template match="RESULTSET/ROW">
<TR>
<xsl:apply-templates/>
</TR>
</xsl:template>
<xsl:template match="COL">
<TD BGCOLOR="#00CCFF">
<xsl:apply-templates/>
</TD>
</xsl:template>
<xsl:template match="DATA">
<P><xsl:value-of/></P>
</xsl:template>
</xsl:stylesheet>
Comparing CSS, XSLT, and JavaScript
The FileMaker Developer 5.5 CD includes three simple examples
that demonstrate the differences between using cascading style
sheets (CSS), Extensible Stylesheet Language–Transformations
(XSLT), and JavaScript scripting language with your XML
documents.
These examples are included in the XML folder:
Developer Extras\FileMaker, Inc\External FileMaker APIs\XML\
All three examples use a simple database named People.fp5.
The People.fp5 database contains seven fields — three text fields for
data, three global fields for field labels, and one container field for
pictures.