ColdFusion 9.0 Resources |
ColdFusion.Layout.showAreaDescriptionShows an area of a border layout that was hidden by using the cflayoutarea tag inithide attribute or the ColdFusion.Layout.hideArea() JavaScript function. Function syntaxColdFusion.Layout.showArea(layout, layoutArea) See alsocflayout, cflayoutarea, ColdFusion.Layout.collapseArea, ColdFusion.Layout.expandArea, ColdFusion.Layout.getTabLayout, Using layouts in the Developing ColdFusion Applications HistoryColdFusion 8: Added this function Parameters
ReturnsThis function does not return a value. UsageThis function does not show an area that a user closed by clicking the X icon on the title bar. Other areas move, if needed, to accommodate the area. This function has no effect if the area is already visible. ExampleThe following code snippet shows the left area of the layout border layout when the user clicks the button. <cfinput name="show2" width="100" value="Show Area 2" type="button" onClick="ColdFusion.Layout.showArea('thelayout', 'left');"> |