@coderevivehq/selectize
v0.15.4
Published
Community-maintained fork of Selectize, a jQuery-based custom select UI control.
Downloads
284
Maintainers
Readme
Maintained by CodeReviveHQ
This fork keeps Selectize available as @coderevivehq/selectize.
Security patches are our highest priority. We also review bug reports, feature requests, and suggestions from the community.
Selectize is an extensible jQuery custom select control. It supports tagging, autocomplete, contact lists, country selectors, and other rich input experiences.
The project is based on the original Selectize repository. We are grateful to its authors and contributors.
Quick links
- Install from npm
- Browse files on jsDelivr
- Releases and changelog
- Report a bug or request a feature
- Documentation
- Demos
Installation
npm install @coderevivehq/selectizeCDN
jsDelivr serves the latest files published in the CodeReviveHQ npm package. These links update automatically when a new version is published.
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@coderevivehq/selectize@latest/dist/css/selectize.default.css"
>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@coderevivehq/selectize@latest/dist/js/selectize.min.js"></script>For reproducible production builds, replace latest with a specific release number.
Features
- Smart Option Searching / Ranking Options are efficiently scored and sorted on-the-fly (using sifter). Want to search for an item's title and description? No problem.
- Caret between items Order matters sometimes. Use the ← and → arrow keys to move between selected items.
- Select & delete multiple items at once Hold down option on Mac or ctrl on Windows to select more than one item to delete.
- Díåcritîçs supported Great for international environments.
- Item creation Allow users to create items on the fly (async saving is supported; the control locks until the callback is fired).
- Remote data loading For when you have thousands of options and want them provided by the server as the user types.
- Clean API & code Interface with it and make modifications easily. Pull requests are always welcome!
- Extensible Plugin API for developing custom features (uses microplugin).
- Touch Support Plays nice with iOS 5+ devices.
Dependencies
- jquery (1.7 and greater), as peer dependency
- Note: it is installed automatically in development, or in projects using NPM 1 or 2. When using NPM from version 3 on, just a warning is thrown and the user needs to manually install an explicit version in their own project (e.g.
npm install --save [email protected]).
- Note: it is installed automatically in development, or in projects using NPM 1 or 2. When using NPM from version 3 on, just a warning is thrown and the user needs to manually install an explicit version in their own project (e.g.
Optional:
- jquery-ui (required by
drag_dropplugin)
Manual installation
All pre-built files needed to use Selectize can be found in the "dist" folder.
If you're looking to get started with minimal fuss, include
selectize.min.js (bundles Sifter and Microplugin
dependencies – also available un-minified for debugging, just remove the
.min part) and css/selectize.default.css.
- js/
- selectize.js: With dependencies, except jQuery
- selectize.min.js: With dependencies, except jQuery
- scss/: Sass source files for customization
- less/: Less source files for customization
- css/
- selectize.css: Core styles
- selectize.default.css: Default theme with core styles
- selectize.bootstrap2.css - Bootstrap 2 theme
- selectize.bootstrap3.css - Bootstrap 3 theme
- selectize.bootstrap4.css - Bootstrap 4 theme
- selectize.bootstrap5.css - Bootstrap 5 theme
Usage
$("select").selectize(options);The available options are documented here.
Contributing
Contributions are welcome. Every change is reviewed through a pull request.
- Open an issue before starting a large change.
- Keep each pull request focused on one fix or feature.
- Add tests for behavior changes.
- Update the documentation when behavior changes.
- Add a changelog entry for user-facing changes.
Tests
Please ensure all the tests pass:
npm test # defaults to ChromeHeadless
BROWSERS=Firefox npm test
BROWSERS=Firefox,Chrome npm test
BROWSERS=Firefox,Chrome,Safari npm testLocal development
To run Selectize locally:
npm startYou can then run the examples at https://loopback.website:4000/.
License
Copyright © 2013–2016 Brian Reavis & Contributors
Copyright © 2020-2022 Selectize Team & Contributors
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at: http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
