i want to implement Ajax form submit in cakephp 2.0. i did the same thing in cakephp1.3 and its working fine but i have issue in cakephp2.0 here below i mentioned my form code
<div id="add_cat">
<?php echo $this->Form->create('Category',array('id'=>'usualValidate', 'class'=>'main')); ?>
<label>Category Name:<span class="req">*</span></label>
<?php echo $this->Form->input('Category.category_name',array('class'=>'required','label'=>false)); ?>
<?php echo $this->ajax->submit('Submit', array('url'=> array('controller'=>'categories', 'action'=>'add'), 'update' => 'add_cat')); ?>
</div>
The above form submit with ajax is working fine. Data is also stored in database Now the issue is first i cant validate it before storing second After submitting the data, the form is not being reset means still there is a value in field
can anyone help me to sortout this problem ?
Thanks in advance