流星 - > aldeed->自动格式如何自定义复选框

时间:2015-02-24 14:30:41

标签: twitter-bootstrap meteor twitter-bootstrap-3 uniform meteor-autoform

我有以下架构的复选框:

'category.isParent': {
    type: Boolean
   ,defaultValue: false
}

以下是复选框的自动表单代码:

    <div class="row">
        <div class="col-lg-8 col-md-offset-5 padding-left-0">
          {{> afFieldInput  name='category.isParent' id='isParent' template="plain"}}
        </div>
   </div>

以下是生成的源代码(从firefox复制)

<div class="checkbox">
<label>
  <div id="uniform-isParent" class="checker"><span><input data-schema-key="category.isParent" id="isParent" name="category.isParent" type="checkbox"></span></div>
  Is parent
</label>

我想根据自己的需要自定义生成的源代码。 有人可以指导我,我可以在自动格式或简单架构中做什么以及如何自定义自动格式自动生成的代码。

1 个答案:

答案 0 :(得分:0)

您可以通过设置字段默认属性来使用autoform进行一些自定义。

请参阅:https://github.com/aldeed/meteor-autoform#putting-field-attribute-defaults-in-the-schema