i use cakephp2.0 ,in my page there is div that displays username and a edit link,when edit link is clicked.a form pop out,allow user to edit their username,when the form is submitted the page by default*(not $this->redirect)* will redirect to the current action.ctp right! this is all done! but not what i have in mind,what i want is after the pop out form is submitted the page stays still, and the div that displays username is update to the new username,and of course the username will be saved in database!
so please help me , any help will do!
public function editpagename()
{
$user_id = $this->Auth->user('id');
$mymo_id = $this->Mymo->find('all',array('condition'=>array('id'=>$user_id)));
$this->layout='editmymowrapper';
if($this->request->is('get'))
{
$this->request->data = $this->Mymo->read('user_mo_name', $mymo_id[0]['Mymo']['id']);
}
else
{
$this->Mymo->read('user_mo_name', $mymo_id[0]['Mymo']['id']);
$this->Mymo->set('user_mo_name',$this->request->data['Mymo']['user_mo_name']);
$this->Mymo->save();
//$this->redirect(array('controller'=>'homes','action'=>'home'));
}
}
the view:
<?php
echo "your username is ".$mymo['user_mo_name']."<a id='user_mo_name' class='mymoedit' href='../mymos/editpagename'>edit</a></br>";
the form:
<div id='update-form'>
<?php
echo $this->Form->create();
echo $this->Form->input('user_mo_name');
echo $this->Form->end('submit');
?>
</div>
i try to use the jquery $.posy method, after preventDefault,the $.post will not work. so just help me with how to submit the form by jquery $.post in cakephp?