Re: Filtering with a session variable in CFGRID and Paging

2007-12-26 Thread Azadi Saryev
i have just stumbled across your post, which got lost in another email thread in my thunderbird for some reason... so, if you haven't found an answer yet: 1) to pass an extra argument to your cfc to which your grid is 'binded' to, just add it to the arguments you are passing already, surrounding

Re: Filtering with a session variable in CFGRID and Paging

2007-12-17 Thread Philip Hayes
Ok Brad- Think I have it. Here is what I did... getFilter = function(){ var s = 'submittedby'; return s; } getFilterValue = function(){ var t = '#session.user.userid#'; return t; }

RE: Filtering with a session variable in CFGRID and Paging

2007-12-17 Thread Brad Wood
Could you elaborate on the "errors"? Are they flash errors or CF errors? Can you give us the error messages? ~Brad -Original Message- From: Philip Hayes [mailto:[EMAIL PROTECTED] Sent: Monday, December 17, 2007 3:59 PM To: CF-Talk Subject: Re: Filtering with a session v

Re: Filtering with a session variable in CFGRID and Paging

2007-12-17 Thread Philip Hayes
-cfgrid-as-you-type) as an example of the second method. The link below was an example of the first method. ~Brad -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: Monday, December 17, 2007 11:35 AM To: CF-Talk Subject: RE: Filtering with a session variable in CFGRID and

RE: Filtering with a session variable in CFGRID and Paging

2007-12-17 Thread Brad Wood
11:35 AM To: CF-Talk Subject: RE: Filtering with a session variable in CFGRID and Paging In the same vein as Ajax implementations, you can filter on the client or the server. For the former, your cfc would receive an optional input which would limit the results returned. The records would be

RE: Filtering with a session variable in CFGRID and Paging

2007-12-17 Thread Brad Wood
In the same vein as Ajax implementations, you can filter on the client or the server. For the former, your cfc would receive an optional input which would limit the results returned. The records would be fetched from the server every time new filtering was applied. The latter would involve som