all groups > coldfusion flash integration > july 2006 >
You're in the

coldfusion flash integration

group:

Can Format="flash" existist in a <table> tage?


tage? -- coldfusion flash integration ">
Can Format="flash" existist in a <table> tage? Mikelaskowski
7/28/2006 3:46:57 PM
coldfusion flash integration:
I use an html template for my site with navigation on the top, and and editable
region in the center.
I am noticing that when ever I try to place a CFform tag in my template it
never loads.
If I place it in a boring blank white document that has no tables, it loads.
Is this a limitation or can it be be done somehow?
Re: Can Format="flash" existist in a <table> tag? Nick Watson
8/9/2006 10:51:02 PM
It should work fine, try this simple example

<html>
<head>
<title>CFForm in Table</title>
</head>
<body>
<table cellspacing="2" cellpadding="2" border="1">
<tr bordercolor="#000000">
<td><cfform format="flash" skin="haloblue" width="500" height="600">
<cfformgroup type="horizontal">
<cfinput name="FirstName" type="text" label="First Name" width="60" />
<cfinput name="LastName" type="text" label="Last Name" width="60" />
</cfformgroup>
</cfform>
</td>
<td>my Table</td>
</tr>
<tr>
<td>Another</td>
<td>Row</td>
</tr>
</table>
</body>
</html>


AddThis Social Bookmark Button