使用 zend 装饰器在 td 中创建一个表

发布于 2024-11-02 05:29:09 字数 410 浏览 1 评论 0原文

我正在使用 zend 表单和 zend 装饰器。

我想在父表的td中创建一个子表。像这样:

<table>
  <tr>
   <td>Username:</td>
   <td>
     <table>
      <tr>
       <td> <input type="text"> </td>
       <td> <img/> </td>
      </tr>
     </table>
   </td>
  </tr>
</table>

我怎样才能创建这个表。 任何人都可以帮助我吗?

I am using zend forms and zend decorators.

I want to create a sub-table in a parent table's td. like this:

<table>
  <tr>
   <td>Username:</td>
   <td>
     <table>
      <tr>
       <td> <input type="text"> </td>
       <td> <img/> </td>
      </tr>
     </table>
   </td>
  </tr>
</table>

How can i create this table.
can anyone help me plz.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

霊感 2024-11-09 05:29:09

这可能不是最好的解决方案,因为您也许可以创建自己的装饰器来呈现表单(带有子表)。但您始终可以使用 renderViewHelper() 函数单独渲染每个表单元素

<table>
  <tr>
   <td>Username:</td>
   <td>
     <table>
      <tr>
       <td><?php echo $this->form->username->renderViewHelper() ?></td>
       <td> <img/> </td>
      </tr>
     </table>
   </td>
  </tr>  <tr>
   <td>AnotherElement:</td>
   <td>
     <table>
      <tr>
       <td><?php echo $this->form->anotherElement->renderViewHelper() ?></td>
       <td> <img/> </td>
      </tr>
     </table>
   </td>
  </tr>
</table>

This might not be the best solution, as you maybe able to create your own decorator to render the form (with the sub-tables). But you could always render each form element individually, using the renderViewHelper() function

<table>
  <tr>
   <td>Username:</td>
   <td>
     <table>
      <tr>
       <td><?php echo $this->form->username->renderViewHelper() ?></td>
       <td> <img/> </td>
      </tr>
     </table>
   </td>
  </tr>  <tr>
   <td>AnotherElement:</td>
   <td>
     <table>
      <tr>
       <td><?php echo $this->form->anotherElement->renderViewHelper() ?></td>
       <td> <img/> </td>
      </tr>
     </table>
   </td>
  </tr>
</table>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文