Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
DuLaus #1
Sort Array
Hi Can anyone give me a pointer on sorting this array below
#curr[jj].getRateCurrencyCode()# (lowest to highest values) <cfloop from
='1' to ='#arrayLen(rates)#' index='jj'> <!---#id[jj].getAvailabilityId()#--->
<table width='100%' border='0'> <tr> <td width='8%' align='left'><a
href='raterules.cfm?id=#id[jj].getAvailabilityId()#'>#id[jj].getAvailabilityId()
#</a></td> <td width='6%' align='left'><font size='1' face='Verdana, Arial,
Helvetica,
sans-serif'><strong>#DollarFormat(rates[jj].getRate())#</strong></font> </td>
<td width='5%' align='left'><font size='1' face='Verdana, Arial, Helvetica,
sans-serif'>#curr[jj].getRateCurrencyCode()#</font></td> <td width='81%'
align='left'><font size='1' face='Verdana, Arial, Helvetica,
sans-serif'>#desc[jj].getPlanDescription()#</font></td> </tr> </table>
</cfloop>
DuLaus Guest
-
Sort Array in datagrid
How do you sort an array in your datagrid? I always want to be able to sort my array by an instance number. If you add a new instance I want it to... -
sort array by key
Hi, What I want is simple, but I can't figure it out at the moment. Let's say this is an array names $matches: Array ( => Array ( -
Sort a 2D array
Hello, I have a 2D array which I would like to sort. I take a simple example: $tab = 'toto';$tab = 'toto'; $tab = 'aaaa';$tab = 'titi'; $tab... -
sort w/o using an array
I am trying to figure out if there is a way to do a sort that doesn't involve putting an entire file in memory. This kind of thing is available in... -
Help me sort a two - d array
I need help sorting a multidimensional array. I have an array myarray(column_no, row_no) it has 5 columns for this example I have used 4 rows...



Reply With Quote

