Meteor -> aldeed->Auto-form 如何自定义复选框
Meteor -> aldeed->Auto-form How to customize checkbox
我有以下复选框架构:
'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>
我想根据自己的需要自定义生成的源代码。
有人可以指导我,我可以做什么以及如何在自动表单或简单模式中自定义自动表单自动生成的代码。
您可以通过设置字段默认属性对自动表单进行一些自定义。
参见:https://github.com/aldeed/meteor-autoform#putting-field-attribute-defaults-in-the-schema
我有以下复选框架构:
'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>
我想根据自己的需要自定义生成的源代码。 有人可以指导我,我可以做什么以及如何在自动表单或简单模式中自定义自动表单自动生成的代码。
您可以通过设置字段默认属性对自动表单进行一些自定义。
参见:https://github.com/aldeed/meteor-autoform#putting-field-attribute-defaults-in-the-schema