ColdFusion 9.0 Resources |
ColdFusion.Layout.expandAreaDescriptionExpands an area of a border layout. Function syntaxColdFusion.Layout.expandArea(layout, layoutArea) See alsocflayout, cflayoutarea, ColdFusion.Layout.collapseArea, ColdFusion.Layout.getTabLayout, ColdFusion.Layout.showArea, Using layouts in the Developing ColdFusion Applications HistoryColdFusion 8: Added this function Parameters
ReturnsThis function does not return a value. UsageThis function has no effect if the area is already expanded. ExampleThe following code snippet expands the left area of the layout border layout when the user clicks the button. <cfinput name="expand2" width="100" value="Expand Area 2" type="button" onClick="ColdFusion.Layout.expandArea('thelayout', 'left');"> |