cfselect with binding problem if select multiple is "yes"

2010-01-27 Thread Les Mizzell
Here's my two selects. This is working - no problems... Select a Category Select a Group But - I need to be able to make *multiple* selections. If I change the second select to allow multiples: Select a Group I get "Error invoking art.cfc. Internal Server Error ..." when load

Re: cfselect with binding problem if select multiple is "yes"

2010-01-27 Thread Les Mizzell
I should add... If I IGNORE the error - I can make multiple selections as needed and the query works as expected when the form is submitted. > Here's my two selects. This is working - no problems... > > id="theCATS" >bind="cfc:art.getCATS()" >bindonload="yes"> >Select a Catego

Re: cfselect with binding problem if select multiple is "yes"

2010-01-27 Thread Les Mizzell
Les Mizzell wrote: > I should add... > > If I IGNORE the error - I can make multiple selections as needed and the > query works as expected when the form is submitted. Little more info finally: Error invoking CFC /email/art.cfc : The GROUPS_ID argument passed to the getGPDesc function is not

Re: cfselect with binding problem if select multiple is "yes"

2010-01-28 Thread Mahcsig
It looks like the getGPDesc function is expecting a number. Selecting multiple items will return a list of numbers separated by commas. The code calling getGPDesc will need to take this into consideration. ~Mahcsig On Wed, Jan 27, 2010 at 5:51 PM, Les Mizzell wrote: > > Les Mizzell wrote: >

Re: cfselect with binding problem if select multiple is "yes"

2010-01-28 Thread Les Mizzell
Mahcsig wrote: > It looks like the getGPDesc function is expecting a number. Selecting > multiple items will return a list of numbers separated by commas. The code > calling getGPDesc will need to take this into consideration. I would expect to see the error *after* the form is submitted though -