thanks!
marc
here's what i ended up with:
<cffunction name="testEncode" returntype="void">
<cfset formatter = getController().getPlugin("JQGridFormatter",true)>
<cfset rc = getRequestContext().getCollection()>
<cfset rc.page = 1>
<cfset rc.rows=25>
<cfset rc.sidx="myid">
<cfset rc.sortx = "desc">
<cfset data = createGridQuery()>
<cfset json =
formatter.encode(data=data,idfield="myid",includecols="myid,myvalue,someotherjunk")>
..... assertions here.
</cffunction>
bottom line, i should've just opened up that mxunit test case to see
what goodies were there waiting for me.
Also, Luis... the PDF cheat sheet you put out there is gold!
thanks.
marc