Append Textarea with Cake PHP using Ajax
问题 Quick questions Is there Way to Append a textarea using Cakephp view code: <?php echo $ajax->link( $qnote['Qnote']['subject'], array( 'controller' => 'qnotes', 'action' => 'view', $qnote['Qnote']['id'] ), array( 'update' => 'Textarea_id') ); ?> controller Code: function view($id = null) { $this->Qnote->id = $id; $this->set('qnote', $this->Qnote->read()); } the above code Pulls the information But Replaces the entire Text in the textarea. Is there a way I can just append the textarea with out