在Meteor中使用AutoForm的可编辑表格

时间:2014-12-15 10:11:54

标签: javascript node.js meteor meteor-autoform

如何在Meteor中创建包含输入字段的表格。我使用了http://autoform.meteor.com/update-each中的示例,但它们只使用了1个输入字段。

该功能适用​​于此代码:

  <tbody>
    {{#each persons}}
      {{#autoForm id=makeUniqueID type="update" collection=Collections.Persons doc=this autosave=true}}
      <tr>
        <td>{{> afFieldInput name="fullName" label=false}}</td>
        <td>{{> afFieldInput name="email" label=false}}</td>
        <td>{{> afFieldInput name="address" label=false}}</td>
        <td><button type="submit" class="btn btn-xs btn-danger">Delete</button></td>
      </tr>
      {{/autoForm}}
    {{/each}}
  </tbody>

但它在每个<form>周围创建了一个<tr>元素,它搞砸了我的HTML。这样做的正确方法是什么?

1 个答案:

答案 0 :(得分:1)

在CSS中使用div

<div class="table">
  {{#each persons}}
    {{autoform class="tr"}}
      <div class="td">{{> afQuickField}}</div>
      <div class="td">{{> afQuickField}}</div>
      <div class="td">{{> afQuickField}}</div>
    {{/autoform}}
  {{/each}}
</div>

并按照这样的方式设计:

.table {
  display: table;
}

.tr {
  display: table-row;
}

.td {
  display: table-cell
}