cfgrid, bind with additional arguments?
Hi
I'm new to CF and love what it can do quickly but then get very frustrated.
I'm using a cfgrid and have worked out that for paging I need to use bind rather than just a query result.
<cfgrid bind="cfc:events.GetEvent( {cfgridpage},{cfgridpagesize},{cfgridsortcolumn},{cfgridsortdirection} )" name="eventGrid" format="html" striperows="yes" pagesize="15" >
However, I want to pass parameters to the funtion so I can filter the data being returned. Everything I've tried gives an error. Where in the <cfgrid code do I put the additional argument ? (in this case a date)
I've tried all sorts of things like the line below but with no success...
<cfgrid bind="cfc:events.GetEvent( {cfgridpage},{cfgridpagesize},{cfgridsortcolumn},{cfgridsortdirection}, {#now()#} )" ... >
Thanks
