Awesome
elevatedevdesign:autoform-nouislider
I no longer plan to maintain this, you should switch to https://github.com/muqube/meteor-autoform-nouislider.
Install
meteor add elevatedevdesign:autoform-nouislider
Configuration
Adds the noUiSlider
type to autoform. It uses min
, max
, and step
attributes like a normal slider, so it can be a drop in replacement, but options passed as noUiSliderOptions
are passed directly to nouislider for advanced control.
Simple Usage
{{> afFieldInput type="noUiSlider" name="foo" min=5 max=10 step=1}}
Single values
CollectionSchema = new SimpleSchema({
slider: {
type: Number,
max: 150,
min: 30,
autoform: {
type: "noUiSlider",
step: 10,
noUiSlider_pipsOptions: {
mode: 'steps',
density: 5
}
}
}
});
Range Silder
RangeSchema = new SimpleSchema({
lower: {
type: Number
},
upper: {
type: Number
}
});
CollectionSchema = new SimpleSchema({
slider: {
type: RangeSchema,
max: 150,
min: 30,
autoform: {
type: "noUiSlider",
noUiSliderOptions: {
step: 10
},
noUiSlider_pipsOptions: {
mode: 'steps',
density: 5
}
}
}
});
Vertical Slider
To get a vertical slider, do noUiSliderOptions: {orientation: 'vertical'}
and specify an exact height
in the CSS for the nouislider
class.
Overridding start and range
You can override start and range by passing the options in.
Be sure that the values passed in match the format below.
{{> afQuickField name='slider' start="[50,60]"}}
{{> afQuickField name='singleSlider' range='{"min": 2,"max":50}'}}
Labels
Show a label left and/or right of the slider
{{> afFieldInput type="noUiSlider" name="foo" labelLeft="ugly" labelRight="delicious" min=0 max=1 step=0.1}}