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!"
>
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274159
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