ecarlotti:meteor-autoform-scheduler

v0.1.2Published 6 years ago

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

This package is currently unsupported (in some way), but I'll try to make up some documentation. If something is wrong, please let me know. If everything will be all right, then I'll copy it to the README.

#Description This field uses (and stores in db) as a RRule. Basically, if you want to start using it, go with RRule.fromString(string) (where string is the output from this field) and then use it as described here.

#Usage In your schema:

1new SimpleSchema({
2    // ...
3    schedule: {
4        type: String,
5        autoform: {
6            type: 'universe-scheduler'
7        }
8    }
9    // ...
10});

Or directly in your template:

1{{!-- ... --}}
2{{> afQuickField name="schedule" type="universe-scheduler"}}
3{{!-- ... --}}

Few screenshots (not all available options):

#1 Screenshot 1

#2 Screenshot 2

#3 Screenshot 3