必须以某种方式将这种情景视为一种共同情景:
在一个名为“坚固”订阅 < /坚固 > 的表格上,我们除其他与订阅有关的领域外,还有:
Select How many foo you need: Select box with 5 options from [1] to [5]
如果用户选择了 < 坚固>2 坚固>,则通过Ajax应显示以下内容:
<!-- for 1 -->
<input type="text" id="name1">Name of thing</input>
<input type="text" id="age1">Age of thing</input>
<!-- for 2 -->
<input type="text" id="name2">Name of thing</input>
<input type="text" id="age2">Age of thing</input>
因此,我们有两个表格(订阅、foo),几个记录将插入其中的一个表格(foo),所有这些都以单一表格形式。
有没有人愿意列举一个简单的例子,说明我们应如何妥善处理上述情况?
The closer that I found was this, but, doesn t cover multiple models nor ajax. :/ http://www.yiiframework.com/doc/guide/1.1/en/form.table
真希望有人能帮我推一下这里