Why didn't yo post the AJAX code? Isn't that crucial for getting the values
to your CFC? We need to see that.


On Wed, Jan 15, 2014 at 2:56 PM, Rick Faircloth <r...@whitestonemedia.com>wrote:

>
> Hi, all...
>
> I've approached this problem from every direction I can think of and with
> reference to many, many websites, but I still can put together an answer.
>
> I have this HTML in a form:
>
>   <cfoutput query = "qGetSpecials">
>
>   <div class="special_title_container">
>   <span class="title_checkbox_span">
>   <input id="special_id_#special_id#" class="special_title_checkbox"
> value="#special_title#" type="checkbox" name="special_title">
>   </span>
>   <span class="special_title_span">#special_title#</span>
>   </div>
>
>   </cfoutput>
>
> Which is output into this:
>
> <input id="special_id_26" class="special_title_checkbox" value="First
> Special" type="checkbox" name="special_title">
> <input id="special_id_27" class="special_title_checkbox" value="Second
> Special" type="checkbox" name="special_title">
> <input id="special_id_28" class="special_title_checkbox" value="Third
> Special" type="checkbox" name="special_title">
>
> This jQuery processing the inputs:
>
> $(document).ready(function() {
>
>   $('#newsletter_preview_button').click(function() {
>
>   var specialTitleID = $('.special_title_checkbox:checked');
>
>   $('.special_title_checkbox:checked').each(function(index,value) {
>
>   var specialTitleID = $(this).attr('id').split('_').pop();
>   var specialTitleID = 'specialTitle_'+specialTitleID;
>
>   alert(specialTitleID); <--- [ this alerts the three input values, 26, 27,
> 28, individually when form is submitted ]
>
>   });
>
>   values     =  {   emailNewsletterGreeting:     emailNewsletterGreeting,
>   specialTitleID:                     specialTitleID    }
>
>           (Followed by AJAX code...)
>
>
>
>
> --
>
> --------------------------------------------------------------------------------------------------------------------------------------------------
> "Ninety percent of the politicians give the other ten percent a bad
> reputation."  Henry Kissinger
>
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357430
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

Reply via email to