Whatever message this page gives is out now! Go check it out!
In a border layout
<cflayoutarea
required
position="bottom|center|left|right|top"
optional
align="left|center|justify|right"
collapsible="false|true"
initcollapsed="false|true"
inithide="false|true"
maxSize="number of pixels"
minSize="number of pixels"
name="string"
onBindError = "JavaScript function name"
overflow = "auto|hidden"
size="number of pixels"
source="URL"
splitter="false|true"
style="CSS style specification"
title="string">
area elements
</cflayoutarea>
In a hbox or vbox layout
<cflayoutarea
optional
name="string"
onBindError = "JavaScript function name"
overflow = "auto|hidden|scroll|visble"
size="number of pixels"
source="URL"
style="CSS style specification">
area elements
</layoutarea>
In a tab layout
<cflayoutarea
optional
bindonload="false|true"
closable="false|true"
disabled="false|true"
inithide="false|true"
name="string"
onBindError = "JavaScript function name"
overflow = "auto|hidden|scroll|visble"
refreshOnActivate = "false|true"
selected="false|true"
source="URL"
style="CSS style specification"
tabTip="text"
title="string">
area elements
</layoutarea>
In an accordion layout
<cflayoutarea
optional
bindonload="false|true"
closable="false|true"
name="string"
onBindError = "JavaScript function name"
overflow = "auto|hidden|scroll|visble"
refreshOnActivate = "false|true"
selected="false|true"
source="URL"
style="CSS style specification"
title="string"
titleicon="icon location">
area elements| Attribute | Req/Opt | Default | Applies to | Description |
align | Optional | The cflayout tag align attribute value | all | Specifies how to align child controls within the layout area. The following values are valid:
|
bindLoad | Optional | true | tab, accordion | A Boolean value that specifies whether to execute the source attribute expression when the layoutarea is first loaded. |
closable | Optional | false | tab | A Boolean value that specifies whether the area can close. Specifying this attribute adds an x icon on the tab or title bar that a user can click to close the area. |
collapsible | Optional | false | border, accordion | A Boolean value that specifies whether the area can collapse. Specifying this attribute adds a >> or << icon on the title bar that a user can click to collapse the area. You cannot use this attribute for border layout areas with a position attribute value of center. |
disabled | Optional | false | tab | A Boolean value that specifies whether the tab is disabled, that is, whether a user can select the tab to display its contents. Disabled tabs are greyed out. Ignored if the selected attribute value is true. |
initCollapsed | Optional | false | border | A Boolean value that specifies whether the area is initially collapsed. You cannot use this attribute for border layout areas with a position attribute value of center. Ignored if the collapsible attribute value is false. |
initHide | Optional | false | border, tab, accordion | A Boolean value that specifies whether the area is initially hidden. To show an initially hidden area, use the ColdFusion.Layout.showArea or ColdFusion.Layout.showTab function. You cannot use this attribute for border layout areas with a position attribute value of center. |
maxSize | Optional | -1(no maximum size) | border | If the position attribute value is top or bottom, the maximum height of the area, in pixels, that you can set by dragging a splitter. If the position attribute value is left or right, the maximum width of the area. You cannot use this attribute for border layout areas with a position attribute value of center. |
minSize | Optional | -1(no minimum size) | border | If the position attribute value is top or bottom, the minimum height of the area, in pixels, that you can set by dragging a splitter. If the position attribute value is left or right, the minimum width of the area. You cannot use this attribute for border layout areas with a position attribute value of center. |
name | Optional | all | The name of the layout area. | |
onBindError | Optional | See Description | all | The name of a JavaScript function to execute if evaluating a bind expression results in an error. The function must take two attributes: an HTTP status code and a message. If you omit this attribute, and have specified a global error handler (by using the ColdFusion.setGlobalErrorHandler function), it displays the error message; otherwise a default error pop-up displays. |
overflow | Optional | auto For accordion, if fillheight attribute of the cflayout tag is false, default value is hidden. | all | Specifies how to display child content whose size would cause the control to overflow the window boundaries. The following values are valid:
|
position | Required if the cflayout type is border | border | The position of the area in the layout. Must be one of the following values:
| |
refreshOnActivate | Optional | false | tab, accordion |
|
selected | Optional | first tab is selected | tab, accordion | A Boolean value that specifies whether this tab is initially selected so that its contents appears in the layout. |
size | Optional | -1calculate initial size dynamically | border, hbox, vbox | For hbox layouts and border layouts with position attribute values of top or bottom, the initial height of the area. For vbox layouts and border layouts with position attribute values of left or right, the initial width of the area. For hbox and vbox layouts, you can use any valid CSS length or percent format (such as 10, 10% 10px, or 10em) for this attribute. For border layouts, this attribute value must be an integer number of pixels. You cannot use this attribute for border layout areas with a position attribute value of center. ColdFusion automatically determines the center size based on the size of all other layout areas. Note: If a layout area in a border layout contains only AJAX controls such as HTML format cftree tags, specify a size attribute. Otherwise, the AJAX components may not be visible until the layout area is resized. |
source | Optional | all | A URL that returns the layout area contents. ColdFusion uses standard page path resolution rules. You can use a bind expression with dependencies in this attribute. If a file specified in this attribute includes tags that use AJAX features, such as cfform, cfgrid, and cfpod, use the cfajaximport tag on the page that includes the cflayoutarea tag. For more information, see cfajaximport . For more information on the source attribute, see Usage. | |
splitter | Optional | false | border | A Boolean value that specifies whether the layout area has a divider between it and the adjacent layoutarea control. Users can drag the splitter to change the relative sizes of the areas. If this attribute is set to true on a left or right position layout area, the splitter resizes the area and its adjacent area horizontally. If this attribute is set to true on a top or bottom position layout area, the splitter resizes the layout vertically. You cannot use this attribute for border layout areas with a position attribute value of center. |
style | Optional | all | A CSS style specification that controls the appearance of the area. | |
tabTip | Optional | tab | If defined, a tab tip is displayed. | |
title | Optional; required for tab layouts | border, tab, accordion | For tab layouts, the text to display on the tab. For border layouts, if you specify this attribute, ColdFusion creates a title bar for the layout area with the specified text as the title. By default, border layouts that are not closable or collapsible do not have a title bar. You cannot use this attribute for border layout areas with a position attribute value of center. | |
{{title}}icon | Optional | accordion | Specifies the location of the icon to display with the title. |
functionName = function(arguments) {function body}function functionName (arguments) {function body}| Function | Description |
Creates a tab in an existing tabbed layout. | |
Disables the specified tab so it cannot be selected. | |
Enables the specified tab so users can select it and display the area contents. | |
Hides a tab. | |
Selects a tab and displays the layout area contents. | |
Shows a tab that was hidden using the inithide attribute or the hideTab() function. | |
Collapses an area of a border layout. | |
Expands a collapsed area of a border layout. | |
Hides an area of a border layout. | |
Hides an area of a border layout. | |
Shows an area of a border layout that was hidden using the inithide attribute or the hideArea() function. | |
Hides an accordion. | |
Shows an accordion that was hidden using the inithide attribute or the hideArea() function. | |
Selects an accordion and displays the layout area contents. | |
Collapses an area of an accordion layout. | |
Expands a collapsed area of an accordion layout. |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
</head>
<body>
<h3>Atab</h3>
<cflayout type="tab" name="thelayout" tabheight="175" style="background-color:##CCffFF;
color:red; height:200">
<cflayoutarea title="Tab 1" style="background-color:##FFAAFF;" closable="true">
This is text in layout area 1
</cflayoutarea>
<cflayoutarea name="area2" title="Tab 2" inithide="true"
style="background-color:##FFCCFF" >
This is text in layout area 2
</cflayoutarea>
<cflayoutarea title="Tab 3" style="background-color:##FF99FF;">
This is text in layout area 3
</cflayoutarea>
</cflayout>
<br />
<cfform>
<cfinput name="show" width="40" value="show tab" type="button"
onClick="ColdFusion.Layout.showTab('thelayout', 'area2');">
<cfinput name="hide" width="40" value="hide tab" type="button"
onClick="ColdFusion.Layout.hideTab('thelayout', 'area2');">
<cfinput name="enable" width="40" value="enable tab" type="button"
onClick="ColdFusion.Layout.enableTab('thelayout', 'area2');">
<cfinput name="disable" width="40" value="disable tab" type="button"
onClick="ColdFusion.Layout.disableTab('thelayout', 'area2');">
<cfinput name="select" width="40" value="select tab" type="button"
onClick="ColdFusion.Layout.selectTab('thelayout', 'area2');">
</cfform>
</body>
</html>