2011-12-07 107 views
1

如何將表單值傳遞給控制器​​「actionCreate function()」。例證。 我在表格下面的代碼:獲取值輸入Yii

<tbody class="templateTarget"> 
<php foreach ($ items as $ i => $ item):?> 
<tr class="templateContent"> 
<td> 
<php echo $ form-> textField ($ item, "[$ i] name", array ('style' => 'width: 100px'));?> 
</ td> 
<td> 
<php echo $ form-> textField ($ item, "[$ i] description ', array (' style '=>' width: 100px '));?> 
</td> 
<td> 
<input type = "hidden" class = "rowIndex" value = "<? php echo $i;?>" /> 
<div class="remove"> <php echo Yii:: t ('wm', 'Remove');?> 
</ td> 
</tr> 
<php endforeach;?> 

作爲變量$ i到「actionCreate()」,這個值需要知道多少行創建了一步。

幫幫我!

回答

0

這是使用tabular input

+0

隨着表格無法獲取輸入在這種情況下$ I的值來完成。

有沒有人知道如何幫助我解決這個問題? – SandroFerraz

+0

您可能需要詳細說明。我不能安靜地理解你的問題。 – Asgaroth

+0

我有一個表單,我用它來創建表格輸入多行,我有一個按鈕來添加一個新行,我需要知道有多少行被填充,這是上面提出的問題。那麼如果你能傳遞變量$的價值,我可以幫助我很多。 謝謝。 – SandroFerraz