DEPRICATED! Meteor Autoform Modals with Materialize
October 29, 2017 ยท View on GitHub
This package is no longer maintained. Do not use this package. Use mozfet:meteor-autoform-modals instead.
. . .
Materialize modals to insert/update/remove docs from Meteor collections using AutoForm.
Setup
meteor add mozfet:autoform-modals-materialize- Include the template in the layouts that will use the modals
{{> autoformModals}} - Use
afModaltemplate to create a button that will trigger the modal
This package is part of a suite
mozfet:meteor-autoform-materialize mozfet:meteor-autoform-modals-materialize mozfet:meteor-autoform-nouislider mozfet:meteor-autoform-medium mozfet:meteor-autoform-materialize-playground
##Example Button Markup##
Insert Example
{{#afModal classes="btn" collection="Posts" operation="insert"}}
Add a new post
{{/afModal}}
Update Example
{{#afModal classes="btn" collection="Posts" operation="update" doc=_id}}
Update post
{{/afModal}}
Remove Example
{{#afModal classes="btn red" collection="Posts" operation="remove" doc=_id}}
Delete post
{{/afModal}}
Example with customisation
{{#afModal classes="btn" collection="Posts" omitFields="createdAt,owner,upvotes" operation="update" buttonContent="Update Challenger" prompt="Use this form to update your doc" title="Update your great content" buttonClasses="btn light-green accent-4"}}
Update your post
{{/afModal}}
##Usage##
Use afModal template to create a link that will trigger the modal.
The required attributes of this template are collection & operation.
Collection should be the name of the global collection object e.g. Posts.
Operation can be insert,update or remove.
If operation="update or operation="remove" you also need to set the doc property to the _id of the document.
Customisation
It is possible to customize the modals by adding additional attributes to the afModal template.
titlewill be the title of the modal (default to html of the button clicked)buttonContentis the html content of the modals' button (default to html of the button clicked)buttonCancelContentis the html content of the modals' cancel button (default to html of the button clicked)fieldsis a comma separated list of the only fields that should be in the form. See the autoform docs.omitFieldsis a comma separated list of fields to omit. See the autoform docs.buttonClassesallows you to add different classes to the buttons. Default iswaves-effect btn-flat modal-actionbuttonSubmitClassesallows you to add different classes to the submit button. Inherits frombuttonClassesby default.buttonCancelClassesallows you to add different classes to the cancel button. Inherits frombuttonClassesby default.prompta paragraph appears above the form / delete button. Defaults to 'Are you sure?' on delete.