node js形式(caolan)bootstrap兼容

时间:2013-07-11 18:06:31

标签: node.js express

如何在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})
});

1 个答案:

答案 0 :(得分:1)

我刚刚在github上提交了一个关于表单项目的教程。这是链接https://github.com/caolan/forms#bootstrap-compatible-output

享受:)