如何将html datalist字段添加到流星aldeed:autoform?

时间:2017-04-14 15:28:39

标签: select meteor drop-down-menu meteor-autoform html-datalist

我用aldeed:autoform填充了一个带有集合的select输入字段。

实地宣言

{{> afFormGroup name="patientID" type="select" options=patientIDs}}

辅助

patientIDs:function () {

    return Meteor.users.find({}).map(function (user) {
        return {label: user.profile.firstName, value: user._id};
    });

}

但事实证明,选择一个选项的下降太大了。因此,我需要在autoform中实现类似于HTML datalist的功能。如何在流星aldeed中实现这一点:autoform?

1 个答案:

答案 0 :(得分:1)

autoform有一个select2加载项,可能会帮助你获得你想要的东西。请参阅here