Groups | Blog | Home
all groups > coldfusion flash integration > june 2005 >

coldfusion flash integration : Flash Form Not Aligning


Melarky_op
6/16/2005 12:00:00 AM
I have a simple flash form. when I use the cfformgroup type="horizontal" tag
to put the City, State and Zip on one line, it indents it on my form. How can
I make the horizontal line line up on the left with the other fields???

Thanks you for your help.

:beer;

<cfset datenow = DateFormat(Now(), "MM/DD/YYYY")>
<cfform action="NewJobProcess2.cfm" format="flash" skin="haloorange"
width="850">
<cfformgroup type="tabnavigator">
<cfformgroup type="page" label="Job Details">
<cfformgroup type="vbox" style="borderStyle: solid;">
<cfformgroup type="HORIZONTAL" style="horizontalGap: 0;">
<cfformgroup type="vbox" width="700">
<cfselect name="JobCustomer" label="Contact:" width="300">
<option>
<cfoutput query="getcustomer">
<option value="#customerid#">#customerfirst# #Customerlast#
</cfoutput>
</cfselect>
<cfinput name="JobName" type="text" label="Job Name:" width="250" required
message="You Must enter a Job Name" />
<cfinput name="JobLocation" type="text" label="Location:" width="250" />
<cfinput type="datefield" label="Date:" value="#datenow#" name="jobenterdate"
width="100" validate="date">
<cfinput name="JobStreet" type="text" label="Street:" width="250" />
<cfformgroup type="horizontal">
<cfinput name="JobCity" type="text" label="City / State / Zip:" width="150" />
<cfinput name="JobState" type="text" width="150" mask="AA" value="CA" />
<cfinput name="JobZip" type="text" width="100" mask="99999" validate="zipcode"
/>
</cfformgroup>
<cfselect width="300" name="jobwheredidyouhear" query="wheredidyouhear"
value="wheredidyouhearid" display="wheredidyouhear" label="Referred
by:"></cfselect>
</cfformgroup>
</cfformgroup>
</cfformgroup>
</cfformgroup>
<cfinput type="submit" name="submit" value="Submit Job Details" />
</cfform>
JenDC
6/17/2005 12:00:00 AM
I had similar problems, and found that adding width attributes to the
cfformgroup tags did the trick. Unfortunately, the sizing does not seem to be
exact, and I had to keep changing the widths on all the various group tags and
some formitem tags before it would show up correctly.:beer;
Melarky_op
6/17/2005 7:40:40 PM
AddThis Social Bookmark Button