I'm trying to figure out exactly what you've got going on: When you click save, do you have an ajax call that's meant to save the data to the server? If you take the ajax call out and just leave Fck, does it work?
As far as I know, Fck copies the content from the editor to a hidden textarea on form submit. Which means if you're doing an Ajax call, it may not be accessing the most recent content. You may need to do a custom javascript call to force Fck to update the hidden textarea so that the Ajax call can submit it to the server. On Wed, Jun 11, 2008 at 7:15 AM, Bart <[EMAIL PROTECTED]> wrote: > > Hello, > An awkward thing occurs when I'm trying to submit a form with the AJAX > helper and fck editor applied to a textarea. > > The textarea is already loaded with a value from the database (I'm > updating newsposts). When I submit the form (only textarea) the new > value is not passed to the controller $this->data. The old value > appears. > Though, if I hit the submit button again... it does post the new > value. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
