Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.