-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Description
Hi,
i got this error with this setup
Books = new Meteor.Collection('Books')
var BookSchema = new SimpleSchema({
title: {
type: String,
label: "Title",
max: 200
},
content: {
type: String,
label: "Yet another poem",
autoform: {
afFieldInput: {
type: 'summernote',
class: 'editor', // optional
settings: {
height: 200
}
}
}
}
});
Books.attachSchema(BookSchema)
template
<body>
{{#autoForm id="booksform" collection="Books" type="insert"}}
{{> afQuickField name='title'}}
{{> afQuickField name='content'}}
{{/autoForm}}
</body>
packages
aldeed:autoform
aldeed:collection2
aldeed:simple-schema
mpowaga:autoform-summernote
fortawesome:fontawesome
How to fix this?
Metadata
Metadata
Assignees
Labels
No labels