I am looking for something like this right now, will have a try and give you some feedback. Thanks for that.
Just one thing I’d like to point out: like it was already said here, it is better that you write the package’s documentation in plain JavaScript. It makes easy for those (like me) who doesn’t use CoffeeScript and remains perfectly accessible to those who use.
@chompomonim, I have the below schema and I would like to store all chosen person inside a event.
At now, I am create the form using Select2, but I would like to use AutoForm instead hand-make form. Is it possible using autoform-picker? Thanks.
PersonSchema = new SimpleSchema({
name: { type: String }
});
EventSchema = new SimpleSchema({
people: { type: [PersonSchema] }
});