我使用ajax($ this-> Js-> get)選擇任何dropdownlist的元素,然後填充其他下拉列表。但是,我有一個form-> create('User')的dropdownlists。所以,如果我使用form-> create(false)我的行爲'編輯'不工作......另一方面,如果我使用form-> create('User')我的'ajax'不起作用。cakephp - ajax請求和操作「編輯」不同時工作
<?php echo $this->Form->create('User', array('action' => 'edit')); ?>
<table>
<tr>
<th>PROJECT</th>
<th>VERSION</th>
</tr>
<tr>
<td> <?php
echo $this->Form->select('projects', array($projects), array('multiple' => false,
'class' => 'span2',
'id' => 'projectsTest'));
?>
</td>
<td>
<?php
echo $this->Form->select('projectversions', array($projectversions), array('multiple' => false, 'class' => 'span2',
'id' => 'projectversionsTest'));
?>
</td>
</tr>
</table>
<?php echo $this->Form->button('ALTERAR', array('type' => 'submit', 'class' => "btn btn-info pull-right")); ?>
<?php
$this->Js->get('#projectsTest')->event('change', $this->Js->request(array(
'controller' => 'ProjectVersions',
'action' => 'getVersionsofProject'
), array(
'update' => '#projectversionsTest',
'async' => true,
'method' => 'post',
'dataExpression' => true,
'data' => $this->Js->serializeForm(array(
'isForm' => true,
'inline' => true
))
)));
echo $this->Form->end();
?>
我該如何解決這個問題?
在此先感謝:)
我使用的是2.3。 但我使用Js Helper在'添加'動作中做同樣的事情,它的工作原理:) – Jcbo