|
Mailing Lists
|
Home /
Groups /
ColdFusion Talk (CF-Talk)
Outputting 4 columns in Flash Forms
Author: Bruce Sorge
Short Link: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:51054#274170
Yeah, I figured that much. Oh well. Time to get better on Flex.
Someone might correct me, but I don't know of anyway to do that in Flash
forms. Other than getting the data formatted correctly in your query, of
course.
----- Excess quoted text cut - see Original Post for more -----
Author: Jacob Munson
Short Link: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:51054#274159
Someone might correct me, but I don't know of anyway to do that in
Flash forms. Other than getting the data formatted correctly in your
query, of course.
----- Excess quoted text cut - see Original Post for more -----
Author: Bruce Sorge
Short Link: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:51054#274120
In regular HTML forms, I can do this to limit my output row to four columns:
<table width="100%">
<cfset variables.newrow = false>
<cfoutput query="listEmailGroupsRet">
<cfif variables.newrow IS "true">
<tr>
</cfif>
<td>
<input type="checkbox" name="EmailGroup" value="#GroupID#">
<cfif Highlight EQ 1>
<font
color=##DD0000><b>#GroupName#</b></font>
<cfelse>
#GroupName#
</cfif>
</td>
<cfif listEmailGroupsRet.currentRow MOD 4 EQ 0>
</tr>
<cfset variables.newrow = true>
<cfelse>
<cfset variables.newrow = false>
</cfif>
</cfoutput>
</tr>
</table>
Is there a way to do this in Flash Forms? I know that you can use tables
but all I want is to have only four columns and however many rows output
that are necessary. I am starting to not like Flash Forms and cannot wait
until my Flex knowledge is better.
Thanks,
--
Bruce Sorge
"I'm a mawg: half man, half dog. I'm my own best friend!"
|
May 24, 2013
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||