Contents

cfcol

Description

Defines table column header, width, alignment, and text. Used only inside a cftable.

Category

Other

Implemented

Usage Syntax

<cfcol  
	header="String"
	[width="number"]
	[align="String"]
	[text="String"]
 />

[] = Optional attribute

Attributes

Name Type Required Default Description
header String Yes The text for the column's header.
width number No The width of the column in characters (the default is 20). If the length of the data displayed exceeds the width value, the data is truncated to fit.
align String No Column alignment, Left, Right, or Center.
text String No Double-quote delimited text that determines what displays in the column. The rules for the text attribute are identical to the rules for cfoutput sections; it can consist of a combination of literal text, HTML tags, and query record set field references. You can embed hyperlinks, image references, and input controls in columns.

Example Usage