CFLib.org – Common Function Library Project

arrayGroupsOf(arrObj, intGroup [, padding])

Last updated February 4, 2010
Download UDF

author

Marcos Placona Marcos Placona

Version: 1 | Requires: ColdFusion MX | Library: DataManipulationLib

 
Rated 1 time(s). Average Rating: 5.0

Description:
Splits or iterates over the array in number of groups, padding any remaining slots with custom strings unless it is empty. It's a big helper for the presentation layer where sometimes it's necessary to display data broken down into columns.

Return Values:
Returns an array.

Example:

<cfset ArrFruits = ["Orange", "Apple", "Peach", "Blueberry",
                    "Blackberry", "Strawberry", "Grape", "Mango",
                    "Clementine", "Cherry", "Plum", "Guava",
                    "Cranberry"]
>


<table border="1">
    <cfoutput>
        <cfloop array="#arrayGroupsOf(ArrFruits, 5, 'not set')#" index="arrFruitsIX">
         <tr>
            <cfloop array="#arrFruitsIX#" index="arrFruit">
             <td>#arrFruit#</td>
            </cfloop>
         </tr>
        </cfloop>
    </cfoutput>
</table>

Parameters:

Name Description Required
arrObj Array to split up in groups. Yes
intGroup Number of items allowed on each group. Yes
padding What should it be filled with in case there's empty slots. No

Full UDF Source:

<!---
Splits or iterates over the array in number of groups.

@param arrObj      Array to split up in groups. (Required)
@param intGroup      Number of items allowed on each group. (Required)
@param padding      What should it be filled with in case there's empty slots. (Optional)
@return Returns an array.
@author Marcos Placona (marcos.placona@gmail.com)
@version 1, February 4, 2010
--->

<cffunction name="arrayGroupsOf" access="public" output="false" returntype="array">
    <cfargument name="arrObj" type="array" required="true" hint="An array object that will be split up in groups">
    <cfargument name="intGroup" type="numeric" required="true" hint="Number of items on each group">
    <cfargument name="padding" type="string" required="false" default=" " hint="What should it be filled with in case there's empty slots">
    
    <cfset var resArray = createObject("java", "java.util.ArrayList").Init(arguments.arrObj) />
    <cfset var arrGroup = arrayNew(1) />
    <cfset var arrObjGroup = arrayNew(1) />
    <cfset var arrObjSize = resArray.size()>
    <cfset var subStart = 0>
    <cfset var subEnd = arguments.intGroup>
    <cfset var ii = "">
    <cfset var difference = "">
    <cfset var jj = "">
    
    <cfset arrGroupSize = ceiling(arrObjSize / arguments.intGroup)>
    <cfset arrArrayGroupSize = arrGroupSize * arguments.intGroup>
    
    <cfif arrArrayGroupSize GT arrObjSize>
        <cfset difference = arrArrayGroupSize - arrObjSize>
        <cfloop from="1" to="#difference#" index="ii">
            <cfset resArray.add(arguments.padding) />
        </cfloop>
    </cfif>
    
    <cfloop from="1" to="#arrGroupSize#" index="jj">            
        <cfset arrGroup = resArray.subList(subStart, subEnd)>        
        <cfset arrayAppend(arrObjGroup, arrGroup)>
        
        <cfset subStart = subStart + arguments.intGroup>
        <cfset subEnd = subEnd + arguments.intGroup>
        <cfset arrGroup = arrayNew(1) />
    </cfloop>
    
    <cfreturn arrObjGroup>

</cffunction>

Search CFLib.org


Latest Additions

Shawn Porter Shawn Porter added
DeMoronize
3 hour(s) ago

Chris Carey Chris Carey added
readPropertiesFi...
1 day(s) ago

Randy Johnson Randy Johnson added
lastDayofWeek
3 day(s) ago

Frank Marion Frank Marion added
sitemapPing
7 day(s) ago

Top Rated

James Sleeman                                     QuickSort
Rated 5.0, 3 time(s)

Barney Boisvert indentXml
Rated 5.0, 3 time(s)

Nathan Dintenfass                                 queryColumnsToSt...
Rated 5.0, 3 time(s)

Kevin Pepperman generateSsccAsn
Rated 5.0, 3 time(s)

Created by Raymond Camden / Design by Justin Johnson