如何在forms模块中包装小部件? Bootstrap要求输入元素必须包含在<div class="controls">
内。
对于标签和字段类,我已经通过
实现了所需的结构var sport_form = forms.create({
title: fields.string({required: true
, widget: widgets.text({classes: ['not_working']})
, errorAfterField: true
, cssClasses: {
label: ['control-label'],
field: ['control-group'],
}
}),
description: fields.string({errorAfterField: true}),
date: fields.date({widget: widgets.date(), required: true, errorAfterField: true})
});
答案 0 :(得分:1)
我刚刚在github上提交了一个关于表单项目的教程。这是链接https://github.com/caolan/forms#bootstrap-compatible-output
享受:)