Here's my two selects. This is working - no problems...

<cfselect name="theCATS"
   id="theCATS"
   bind="cfc:art.getCATS()"
   bindonload="yes">
   <option value="0">Select a Category</option>
</cfselect>

<cfselect name="sendGROUP"
   id="sendGROUP"
   multiple="no"
   queryPosition="below"
   bind="cfc:art.getGROUPS({theCATS})"
   bindattribute="HTML">
   <option value="0">Select a Group</option>
</cfselect>


But - I need to be able to make *multiple* selections. If I change the 
second select to allow multiples:

<cfselect name="sendGROUP"
   id="sendGROUP"
   multiple="yes"
   queryPosition="below"
   bind="cfc:art.getGROUPS({theCATS})"
   bindattribute="HTML">
   <option value="0">Select a Group</option>
</cfselect>

I get "Error invoking art.cfc. Internal Server Error ..." when loading 
the page. Not changing any other code anywhere else...

Ideas? Digging into Google, but nothing useful so far...


__________ Information from ESET NOD32 Antivirus, version of virus signature 
database 4811 (20100127) __________

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330200
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to