Skip to content

Custom Selectize input type for the Autoform package for Meteor.

Notifications You must be signed in to change notification settings

haugasdev/meteor-autoform-selectize

 
 

Repository files navigation

Selectize Input for Autoform

Adds a custom Selectize input type for Autoform.

Installation

meteor add jeremy:autoform-selectize

The main Selectize library will be loaded via jeremy:selectize (which will be added automatically)

Usage

Specify "selectize" for the type attribute of an Autoform input. This can be done in a number of ways:

In the schema, which will then work with a quickForm or afQuickFields:

{
  tags: {
    type: [String],
    autoform: {
      type: "selectize",
      afFieldInput: {
        multiple: true,
        selectizeOptions: {}
      }
    }
  }
}

Or on the afFieldInput component or any component that passes along attributes to afFieldInput:

{{> afQuickField name="tags" type="selectize" multiple=true }}

{{> afFormGroup name="tags" type="selectize" multiple=true }}

{{> afFieldInput name="tags" type="selectize" multiple=true }}

To provide selectize options, set a selectizeOptions attribute equal to a helper that returns the options object. Most of the data- attributes that the plugin recognizes should also work.

Reactive collection data

To add reactive collection data, add the isReactiveOptions: true to the selectizeOptions, for example:

// some autoform field
{
  type: String,
  label: 'Paper',

  autoform: {
    type: 'selectize',
    options: function () {
        const papers = Papers.find({}).map(element => {
            return {
                label: `${element.name} ${element.format.width || 0}x${element.format.height || 0}mm / ${element.thickness || 0}µm / ${element.gramWeight || 0}g`,
                value: element._id
            }
        });
        return papers;
    },

    afFieldInput: {
        selectizeOptions: {
            isReactiveOptions: true
        }
    }
  }
}

About

Custom Selectize input type for the Autoform package for Meteor.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 93.7%
  • HTML 6.3%