Whatever message this page gives is out now! Go check it out!
Format | Location |
<cfform format="xml" skin="basic"> | Searches for XML/CSS in the default directory and its subdirectories. |
<cfform format="xml" skin="c:\foo\bar\basic.xsl"> | Uses the absolute path. |
<cfform format="xml" skin="basic.xsl"> | Searches in the current directory. |
<cfform format="xml" skin="..\basic.xsl:"> | Searches the parent of the current directory. |
<cfform format="xml" skin="http://anywhereOnTheWeb/basic.xsl"> | Uses the specified URL. |
File | Description |
default.xsl | The default transform that ColdFusion uses if you do not specify a skin attribute for an XML format form. Identical to the basic.xsl file. |
basic.xsl | A basic form format that arranges form elements using a table. |
basiccss.xsl | A basic form format that arranges form elements using HTML div and span tags. |
colorname.xsl | A basic form format that arranges form elements using a table and applies a color scheme determined by the colorname to the form. Based on the basic.xsl file. |
_cfformvalidation.xsl | Applies ColdFusion validation rules. Used by all skins. |
_formelements.xsl | Transformation rules for form elements except for those defined using cfformgroup tags. Used by all skins |
grouptype.xsl_group_typetable.xsl_grouptype_css.xsl | Transformation rules for cfformgroup tags. The tag type attribute is part of the filename. Files with table in the name are used by basic.xsl and its derivatives. Files with css in the name are used by basiccss.xsl. |
match="xf:group[@appearance='type_attribute_name']" |
<xsl:template match="xf:group[@appearance='panel']"> |
<!-- include groups that will be supported for this skin-->
<xsl:include href="_group_vertical_table.xsl" />
<xsl:include href="_group_horizontal_table.xsl" />
<xsl:include href="_group_fieldset.xsl"/>
<xsl:include href="my_group_panel.xsl" />File | Description |
basic_style.cssdefault_style.css | Provides a plain style for ColdFusion XSL files that use table-based formatting. These files are identical and are used by the basic.xsl and default.xsl transforms. ColdFusion uses the default_style.css if you do not specify a skin in your cfform tag. |
basic2_style.css | The basic_style with limited positioning changes for use with XSL files that have div-based formatting. Used by the basiccss.xsl transform. |
css_layout.css | Style specifications for laying out forms that use div-based formatting. Used by the basiccss.xsl transform. |
colorname_style.css | Used by the color-formatted ColdFusion skins. Defines the same classes as basic_style.css, with additional property specifications. |