0.29
No release in over 3 years
Low commit activity in last 3 years
A small gem for putting selectize.js into the Rails asset pipeline
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0
 Project Readme

selectize-rails Gem Version

selectize-rails provides the selectize.js plugin as a Rails engine to use it within the asset pipeline.

Installation

Add this to your Gemfile:

gem "selectize-rails"

and run bundle install.

Usage

In your application.js, include the following:

//= require selectize

In your application.css, include the following:

 *= require selectize
 *= require selectize.default

Or if you like, you could use import instead

@import 'selectize'
@import 'selectize.bootstrap3'

Themes

To include additional theme's you can replace the selectize.default for one of the theme files

Examples

See the demo page for examples how to use the plugin

Changes

Version Notes
0.12.6 Update to v0.12.6 of selectize.js
0.12.5 Update to v0.12.5 of selectize.js
0.12.4.1 Moved css files to scss to be able to use @import
0.12.4 Update to v0.12.4 of selectize.js
0.12.3 Update to v0.12.3 of selectize.js

older

License

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request