Yeah, I figured that much. Oh well. Time to get better on Flex.

-----Original Message-----
From: Jacob Munson [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 29, 2007 6:05 PM
To: CF-Talk
Subject: Re: Outputting 4 columns in Flash Forms


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.

On 3/29/07, Bruce Sorge <[EMAIL PROTECTED]> wrote:
> 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!"
>
>
> 



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Macromedia ColdFusion MX7
Upgrade to MX7 & experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274170
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to