Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am basically trying to create an ajax edit form. This is the edit link code

<?= $this->Js->link('Edit', 
array('controller' => 'employees', 'action' =>         'personal_details_edit',$employee['Employee']['id']), 
    array( 'update' => '#personal_details_update', 
      'evalScripts' => true, 
     'before' => $this->Js->get('#busy-indicator')->effect('fadeIn', array('buffer' =>     false)), 
    'complete' => $this->Js->get('#busy-indicator')->effect('fadeOut', array('buffer' => false)), 
   ) 
);
echo $this->Js->writeBuffer();?> 

And this is the ajax form code which gets loaded after clicking the above edit link.

<? //serialize the form element to submit 

$data = $this->Js->get('#employee_personal_edit')->serializeForm( 
                                            array( 
                                            'isForm' => true, 
                                            'inline' => true) 
                                        ); 

// Submit the serialize data on submit click 
$this->Js->get('#employee_personal_edit')->event( 
      'submit', 
      $this->Js->request( 
        array('action' => 'personal_details_edit'), 
        array( 
                'update' => '#personal_details_update', // element to update 
                                         // after form submission 
                'data' => $data, 
                'async' => true, 
                'dataExpression'=>true, 
                'method' => 'POST', 


            ) 
        ) 
    ); 
 echo $this->Js->writeBuffer(); ?> 

The form submit is working in Chrome, IE, Safari but not working in Firefox and Opera.When I click form submit in Firefox nothing happens(no XMLHTTPRequest is being sent).

If i access the form link directly(without loading via ajax edit link)its working normally in Firefox.

How to fix it?Any help is appreciated. :)

share|improve this question
1  
I guess it will be easier (and clearer) if you use the classic way. From my experience is better than using the inbuild ajax option from Cake. – Herod Sep 14 '12 at 7:11

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.