cfWindow - Example
June 13, 2007 – 3:48 pmAfter uninstalling the previous version of ColdFusion 7, it took me around 10-15 minutes to finish installing ColdFusion 8.
First, let me start off with cfwindow tag example, it was actually real deal:
CFM:
-
<!--- cfwindow --->
-
<cfwindow
-
center="true"
-
closable="true"
-
modal="false"
-
resizable="true"
-
initshow="true"
-
height="200"
-
name="window"
-
title="UI Window Example"
-
width="200">
-
This is a basic cfWindow example, other good stuff can go here also.
-
</cfwindow>