Zend表单输入框对齐

时间:2016-07-04 10:11:09

标签: html5 zend-form

这是我的HTML视图:

 $('ul li.selected').each(function () {
            console.log("li.selected");
            var val = $(this).find(":checkbox").val();
            console.log(val);                                        
        });

这是我的观点表格:

<tr class="header">
    <th>CLASS</th>
    <th>NAME</th>
    <th>Actions</th>
</tr>

<?php 

foreach($this->documents as $row): ?>

<tr>

    <td><?php echo $row['CLASS'];?></td>
    <td><?php echo $row['NAME'];?></td>
            href="/admin/documents/delete?ID=<?php echo $row['ID'];?>">
        delete</a> 
    </td>   
</tr>

<?php endforeach; ?>

</table>
</div>

Zend Form front view

我有zend形式,有两个输入CLASS和NAME。 如何在同一行显示CLASS和所需的输入文本框列?

这是我的输出图像:
required output image

同样的,如何将提交和重置按钮放在同一行?

0 个答案:

没有答案