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
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

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

Reply via email to