| Title: |
CF Application Design |
| Date: |
07/11/03
7 Posts
|
| Summary: |
Need a tool to document your data model and wireframe your application? Take a look at Adalon, Visio, NAWT, and Embarcadero's ER/Studio. |
| |
| Title: |
Grand Total |
| Date: |
07/11/03
10 Posts
|
| Summary: |
How would you calculate the grand total of an array where session.cart[i][2] holds the quantity and session.cart[i][3] holds the price?
<cfset grandtotal = 0>
<cfloop from="1" to="#ArrayLen(session.cart)#" index="i">
<cfset grandtotal =
grandtotal + (session.cart[i][2] * session.cart[i][3])>
</cfloop>
|
|
| |
| Title: |
CFFLUSH and IE5.x - 6.0 |
| Date: |
07/11/03
15 Posts
|
| Summary: |
How can you force CFFLUSH to partially output a table? Developer suggestions include:
- adding a "table-layout: fixed" style and optionally adding COL tags
- using multiple TBODY or DIV tags instead of a table
- adding a 1K comment to cue IE to dump the cache
|
| |