Your complete function will look like this.
<?php
function done($id = null)
{
$this->Task->id = $id;
if(this->Task->saveField('done', 1))
{
$this->set('data', $this->Task->findAll());
$this->render('done', 'ajax');
}
}
?>
Regards
Raffi Hovhannesian
On Jun 15, 2:27 am, LoinSees <[EMAIL PROTECTED]> wrote:
> Hello,
> I have been trying to do this tutorial for a while, but keep failing
> (http://grahambird.co.uk/cake/tutorials/ajax.php)
> I have managed to identify the problem thought... it does not save to
> the database once you click the checkbox.
> Here is a small part of tasks_controller.php:
>
> function done($id = null)
> {
> // move task from todo to done
> $this->Task->id = $id;
> $this->params['data']['Task']['done'] = 1;
> if ($this->Task->save($this->params['data']))
> {
> $this->set('data', $this->Task->findAll());
> $this->render('done', 'ajax');
> }
> }
>
> Can someone tell me what is wrong here?
> Thanks, Loin Sees.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake
PHP" 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
-~----------~----~----~----~------~----~------~--~---