gildaspk:autoform-medium

v0.0.5Published 10 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

Meteor Autoform Medium Editor

Adds medium editor for autoform.

Setup

  1. meteor add gildaspk:autoform-medium

Usage

You can apply it directly in your template:

{{> afFieldInput name='richTextFieldName' type="medium"}}

You can also specify it at the schema level:

MySchema = new SimpleSchema({
    richTextFieldName: {
        type: String
        autoform: {
            type: "medium",
            mediumOptions: {  
                // By defaut, we remove the label generated by QuickField or QuickForm as it does not
                // play well with the editor. If you have handled this label by yourself and do not
                want it to be removed, add this option
                keepLabel: true,

                ... other medium editor options here...
            },
        }
    }
});