I'm not quite sure what you're doing but it looks like you should be doing this:

'complete' => 'javascript:resetReportPhotoCommentForm(' .
$photo_comment['PhotoComment']['id'] . ');'

        function resetReportPhotoCommentForm($id)
        {
        document.getElementById("ReportComments_" + $id).reset();
        }
On Wed, Mar 13, 2013 at 6:50 PM, Chris <chris...@yahoo.com> wrote:
> can anyone help please,...
>
>
> On Sunday, March 3, 2013 2:32:57 PM UTC-8, Chris wrote:
>>
>> hi guys,... can anyone help please,... I'm using jQuery,...
>> how can I reset form after submission with unique ID, this is what I have
>> so far,... but it reset ONLY for last comment report. this form is for photo
>> comment report,... and if I have lets say 9 comments, it only reset the last
>> one "9" but not 1, or 2,... or 8
>>
>> <?php echo $this->Form->create('PhotoComment',
>> array('id'=>"ReportComments_".$photo_comment['PhotoComment']['id'])); ?>
>>     <?php echo $form->hidden('Report.sender_id', array('value' =>
>> $user_object['id'])) ?>
>>
>>       <p style="font-size: 1.2em; font-weight: normal;">
>> <?php  echo $this->Form->textarea('Report.content'); ?>
>>       </p>
>> <div class="clr"></div>
>>     <p>
>> <?php echo $ajax->submit('Report', array('url'=>
>> array('controller'=>'photo_comments', 'action'=>'report_spam/'.
>> $photo_comment['PhotoComment']['id']), 'update' =>
>> "updateReportPhotoComment_".$photo_comment['PhotoComment']['id'], 'complete'
>> => 'javascript:resetReportPhotoCommentForm();')); ?>
>> <?php echo $form->end(); ?>
>>     </p>
>>
>> <div class="clr"></div>
>>
>> <script>
>> function resetReportPhotoCommentForm()
>> {
>> document.getElementById("ReportComments_<?php echo
>> $photo_comment['PhotoComment']['id'] ?>").reset();
>> }
>> </script>
>>
>> thanks in advance
>> chris
>>
> --
> Like Us on FaceBook https://www.facebook.com/CakePHP
> Find us on Twitter http://twitter.com/CakePHP
>
> ---
> You received this message because you are subscribed to the Google Groups
> "CakePHP" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to cake-php+unsubscr...@googlegroups.com.
> To post to this group, send email to cake-php@googlegroups.com.
> Visit this group at http://groups.google.com/group/cake-php?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>

-- 
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP

--- 
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cake-php+unsubscr...@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to