情况就是这样。我们需要能够创建报价。报价包含组件:研究,Pesel和预约,cc和注册以及设定费用。引用可能有也可能没有,但最多只能有1个。
我们在一个视图上有一系列表单,我们将其分为多个选项卡,以便一次只能查看一个。选项卡的代码以及第一个表单位于:
<script>
$(function()
{`
$( "#tabs" ).tabs();
});
$(function() {
$( "#accordion" ).accordion({
active: false,
collapsible: true,
heightStyle: "content"
});
});
</script>
<div id="tabs">
<ul>
<li><a href="#tabs-1">Quote Info</a></li>
<li><a href="#tabs-2">Research</a></li>
<li><a href="#tabs-3">CC and Registration</a></li>
<li><a href="#tabs-4">PESEL and appointment</a></li>
<li><a href="#tabs-5">Other Fees</a></li>
</ul>
<div id="tabs-1">
<?php echo $this->Form->create('Quote'); ?>
<p>
<h3>Quote Information</h3>
<p>
<fieldset>
<div id="hide"><?php echo $this->Form->input('date', array('dateFormat' => 'DMY'));?></div>
<?php
echo $this->Form->input('description');
echo $this->Form->input('quote_accepted');
echo $this->Form->input('research_accepted');
echo $this->Form->input('cc_accepted');
echo $this->Form->input('pesel_accepted');
echo $this->Form->input('setfees_accepted');
echo $this->Form->input('total', array('value' => '0'));
?>
</fieldset>
<?php echo $this->Form->end(__('Submit')); ?>
第一种形式可行。一个不起作用的是:
<div id="tabs-5">
<?php echo $this->Form->create('Quote'); ?>
<h3><?php echo __('Other Fees'); ?></h3>
<table>
<tbody>
<tr>
<th>Item</th>
<th>Quantity</th>
<th>Initial Price</th>
<th>Client Price</th>
<th>Total</th>
</tr>
<tr>
<td><h5>Children under 18</h5></td>
<td> <?php echo $this->Form->input('Setfee.children_quantity', array('label' => ''));?> </td>
<td>$900</td>
<td><input type="text"> </td>
<td> <?php echo $this->Form->input('Setfee.children_total', array('label' => ''));?> </td>
</tr>
<tr>
<td><h5>Relatives of Confirmed Citizens</h5></td>
<td> <?php echo $this->Form->input('Setfee.relatives_quantity', array('label' => ''));?> </td>
<td>$900</td>
<td><input type="text"> </td>
<td> <?php echo $this->Form->input('Setfee.relatives_total', array('label' => ''));?> </td>
</tr>
<tr>
<td><h5>Registration of One Birth or Marriage Certificate</h5></td>
<td> <?php echo $this->Form->input('Setfee.reg_birth_marriage_quantity', array('label' => ''));?> </td>
<td>$50</td>
<td><input type="text"> </td>
<td> <?php echo $this->Form->input('Setfee.reg_birth_marriage_total', array('label' => ''));?> </td>
</tr>
<tr>
<td><h5>Registration of Birth and Marriage Certificate Altogether</h5></td>
<td> <?php echo $this->Form->input('Setfee.reg_birth_marriage_together_quantity', array('label' => ''));?> </td>
<td>$50</td>
<td><input type="text"> </td>
<td> <?php echo $this->Form->input('Setfee.reg_birth_marriage_together_total', array('label' => ''));?> </td>
</tr>
<tr>
<td><h5>Standard Fees</h5></td>
<td></td>
<td></td>
<td></td>
<td> <?php echo $this->Form->input('Setfee.standard_fee_total', array('label' => ''));?> </td>
</tr>
<tr>
<td> <h5><?php echo $this->Form->input('Setfee.set_fees_total');?></h5></td>
<td></td>
<td></td>
<td></td>
<div id='hide' ><?php echo $this->Form->input('Setfee.quote_id');?></div>
<td><?php echo $this->Form->end(__('Submit')); ?></td>
</tr>
</tbody>
</table>
</div>
和保存控制器在这里:
public function makeQuote()
{
$this->loadModel('Applicant');
$this->LoadModel('ApplicantQuote');
$this->LoadModel('Setfee');
//retrieves the applicants chosen from the view_quotes page
$args = $this->params['url'];
$applicants = $this->Applicant->find('all', array('conditions' => array('id' => $args),
'order' => 'first_name ASC', 'recursive' => -1));
$this->set(compact('applicants'));
if ($this->request->is('post'))
{
$this->Quote->create();
if($this->Quote->saveall($this->request->data))
{
$this->Session->setflash(__('quote saved'));
}
}
基本上我们需要能够彼此独立地保存表单。至于模特。行情有固定费用,cc和注册,pesel和研究之一,每个都属于报价。
我们是cakephp的新手,我们为此而努力。请帮忙。
答案 0 :(得分:0)
您的所有5个表单都在同一页面上,具有相同的ID,并提交给相同的控制器操作。所以,第一个将起作用,点击所有其他人的提交只会提交第一个表格(即其他表格不起作用)。
首先,我会把它作为一个大胖子形式工作,没有标签 - 只是因此你一次只处理一个问题。一旦有效,您就可以选择将表单拆分为选项卡。最直接的是:
在选项卡开头之前打开表单,并在选项卡结束后关闭它。提交按钮位于下方标签之外。但是您可以根据需要在字段中分配字段本身。
用户可以从选项卡转到选项卡,编辑字段,然后单击下面选项卡外的提交按钮保存所有字段。
所以看起来像这样:
<?php echo $this->Form->create('Quote'); ?>
<div id="tabs-1">
// A bunch of form fields go here
</div>
<div id="tabs-2">
// A bunch of other form fields go here, etc
</div>
<?php echo $this->Form->end(__('Submit')); ?>
您的其他选项是使每个标签成为单独的表单,提交单独的控制器操作,和/或使用ajax。但我之前描述的方式应该是最简单的。