CF8 cfselect ajax features - what am I missing?

2010-03-21 Thread James Milks
Hi, Have been away from CF for a long time. Retooling a site to use more modern features and I would like to use the CFSELECT bind features to link to select lists. I followed the example by Forta on the Adobe site, but it is just not working. have uploaded a page with the code here:

Re: CF8 cfselect ajax features - what am I missing?

2010-03-21 Thread Azadi Saryev
for some reason - maybe to do with data type of underlying db column - the values of options in your letterList cfselect have trailing spaces. hence the arguments passed to your getTeamsByLetter() cfc method look like this: |{letter:M|| ||}|, and thus 'M %' is what your query tries to match. add

RE: CF8 cfselect ajax features - what am I missing?

2010-03-21 Thread Will Swain
First place I'd look is your query. Try spoofing it up outside the ajax scenario, send it some values and see what comes back. -Original Message- From: James Milks [mailto:jamesmi...@noncubicle.com] Sent: 21 March 2010 12:16 To: cf-talk Subject: CF8 cfselect ajax features - what am I

RE: Mura and Forums?

2010-03-21 Thread Hugo Ahlenius
Christopher Stowell wrote onĀ 2010-03-20: Has anyone found a forums software that will integrate with Mura easily? Only one I've found so far is way over the budget of site I'm working on so looking for something simple, easy to use. Thanks in advance. Christopher - the main Mura forums are

Re: CF8 cfselect ajax features - what am I missing?

2010-03-21 Thread Azadi Saryev
oh wow that was weird... all those | in my pasted firebug output... in any case, look at the generated html source of your page and you will see the options in first cfselect all have lots of trailing whitespace. Azadi On 21/03/2010 20:40, Azadi Saryev wrote: for some reason - maybe to do with

RE: CF8 cfselect ajax features - what am I missing?

2010-03-21 Thread James Milks
Thank you - I was sure I tried trimming, but I guess not. James -Original Message- From: Azadi Saryev [mailto:azadi.sar...@gmail.com] Sent: March 21, 2010 8:41 AM To: cf-talk Subject: Re: CF8 cfselect ajax features - what am I missing? for some reason - maybe to do with data type of

Re: CF8 cfselect ajax features - what am I missing?

2010-03-21 Thread James Milks
Well, I got the cfselect to work, but when I placed the code into a page displayed in a lightbox (facebox actually) it doesn't work. I suspect there is an Ajax call in the generated JS that is failing. Is this a question for cf-talk or the ajax list? James Thank you - I was sure I tried

Re: CF8 cfselect ajax features - what am I missing?

2010-03-21 Thread James Holmes
Firebug is essential for debugging this sort of thing. It will show you every ajax call and let you see if anything is failing. mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ On 22 March 2010 05:31, James Milks jamesmi...@noncubicle.com wrote: Well, I got