Open jimmiebtlr opened 9 years ago
When using in an array like so
CollectionSchema = new SimpleSchema({ images: { type: [String], optional: true }, 'images.$': { type: String, autoform: { type: "fileUpload", collection: "Images" } } });
Auto save doesn't trigger when a file is added, or removed.
For now you can hack with something like:
Template.profile.events 'change form#updatePicture input': (e,t) -> Meteor.setTimeout -> $('form#updatePicture').submit() , 10
When using in an array like so
Auto save doesn't trigger when a file is added, or removed.