Whatever message this page gives is out now! Go check it out!
ColdFusion.Layout.createAccordionPanel(layoutname, layoutareaname, title, URL [, config]) |
Parameter | Description |
{{layout}}name | The name attribute of the accordion layout in which to add the panel. |
{{layoutarea}}name | The name to assign for the new accordion panel. Must be unique on the accordion. |
title | The text to display on the panel. You can use HTML mark-up to control the title appearance. |
URL | The URL from which to get the panel area contents. This attribute can use URL parameters to pass data to the page. ColdFusion uses standard page path resolution rules to locate the page. |
config | An object containing configuration parameters. For details, see "Usage". |
Entry | Default | Description |
align | The cflayout tag align attribute value | Specifies how to align child controls within the panel area. The following values are valid:
|
callbackHandler | �� | A function that is called when the layout accordion body has loaded. This function must not take any arguments. |
errorHandler | �� | A function that is called if an error occurs in loading the tab body. This function must take two arguments:
|
overflow | auto | Specifies how to display child content whose size would cause the tab layout area to overflow the window boundaries. The following values are valid:
|
selected | false | A Boolean value specifying whether this tab is initially selected so that its contents appears in the layout. |
style | �� | A CSS style specification that controls the appearance of the layout area. |
titleicon | �� | Specifies the location of the icon to display with the title. |
<html>
<head>
</head>
<body>
<cfform name="panels">
<cfinput type="button" name="CreateAccordionPanel"
onClick="ColdFusion.Layout.createAccordionPanel('AccordionPanel','panel2',
'Panel 2','_panelUrl.cfm',{inithide:false,selected:true})"
value="Create Panel">
</cfform>
<cflayout type="panel" name="AccordionPanel">
<cflayoutarea name="panel1" title="Panel 1" align="left">
Default Panel
</cflayoutarea>
</cflayout>
</body>
</html><h3>Panel 2</h3>
This is an accordion panel