All Projects → selectize → Selectize.js

selectize / Selectize.js

Licence: apache-2.0
Selectize is the hybrid of a textbox and <select> box. It's jQuery based, and it has autocomplete and native-feeling keyboard navigation; useful for tagging, contact lists, etc.

Programming Languages

javascript
184084 projects - #8 most used programming language
SCSS
7915 projects
Less
1899 projects

Projects that are alternatives of or similar to Selectize.js

bootstrap5-tags
Replace select[multiple] with nices badges for Bootstrap 5
Stars: ✭ 58 (-99.54%)
Mutual labels:  select, input
Tags Input
🔖 <input type="tags"> like magic
Stars: ✭ 312 (-97.55%)
Mutual labels:  tagging, input
svelecte
Selectize-like component written in Svelte, also usable as custom-element 💪⚡
Stars: ✭ 121 (-99.05%)
Mutual labels:  select, tagging
Ant Plus
🔺 Ant Design 表单简化版
Stars: ✭ 212 (-98.34%)
Mutual labels:  input, select
Stf Vue Select
stf vue select - most flexible and customized select
Stars: ✭ 61 (-99.52%)
Mutual labels:  input, select
tag-picker
Better tags input interaction with JavaScript.
Stars: ✭ 27 (-99.79%)
Mutual labels:  input, tagging
Selectr
A lightweight, vanilla javascript select box replacement. No dependencies.
Stars: ✭ 293 (-97.7%)
Mutual labels:  tagging, select
insect
🛠 Highly customisable, minimalistic input x select field for React.
Stars: ✭ 33 (-99.74%)
Mutual labels:  select, input
React Input Tags
React component for tagging inputs.
Stars: ✭ 10 (-99.92%)
Mutual labels:  tagging, input
Formbase
Better default styles for common input elements.
Stars: ✭ 560 (-95.61%)
Mutual labels:  input, select
Vue Cool Select
Select with autocomplete, slots, bootstrap and material design themes.
Stars: ✭ 195 (-98.47%)
Mutual labels:  input, select
Tagify
🔖 lightweight, efficient Tags input component in Vanilla JS / React / Angular / Vue
Stars: ✭ 2,305 (-81.91%)
Mutual labels:  tagging, input
tom-select
Tom Select is the hybrid of a textbox and select box. Forked from selectize.js to provide a framework agnostic autocomplete widget with native-feeling keyboard navigation. Useful for tagging, contact lists, etc.
Stars: ✭ 520 (-95.92%)
Mutual labels:  select, input
Vxe Table
🐬 vxe-table vue 表格解决方案
Stars: ✭ 4,242 (-66.71%)
Mutual labels:  input, select
Customalertviewdialogue
Custom AlertView Dialogue is the world's most advanced alert view library. Custom AlertView Dialogue includes simple message popups, confirmation alerts, selector popups, action sheet bottom menus, and input/feedback contact forms.
Stars: ✭ 100 (-99.22%)
Mutual labels:  input, select
Jhform
JhForm - 自定义表单工具,更加简单,快捷的创建表单、设置页面
Stars: ✭ 108 (-99.15%)
Mutual labels:  input, select
Validation
Framework agnostic validation library for PHP
Stars: ✭ 146 (-98.85%)
Mutual labels:  input
El Tree Select
基于element-ui2.x扩展下拉树
Stars: ✭ 159 (-98.75%)
Mutual labels:  select
Cjlabel
A drop-in replacement for UILabel that supports NSAttributedString, rich text, display any view, links, select copy and more
Stars: ✭ 140 (-98.9%)
Mutual labels:  select
Boipushy
Input module for LÖVE
Stars: ✭ 138 (-98.92%)
Mutual labels:  input

selectize.js

Selectize.js

→ Selectize is looking for new members on the maintenance team!

NPM version CDNJS version
Node.js CI Coverage Status
Discussion & Help

Selectize is an extensible jQuery-based custom <select>; UI control. It's useful for tagging, contact lists, country selectors, and so on. It clocks in at around ~7kb (gzipped). The goal is to provide a solid & usable experience with a clean and powerful API.

Features

  • Smart Option Searching / Ranking Options are efficiently scored and sorted on-the-fly (using sifter). Want to search 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 welcome!
  • Extensible Plugin API for developing custom features (uses microplugin).
  • Touch Support Plays nice with iOS 5+ devices.

Dependencies

Optional:

Installation and files

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 standalone/selectize.min.js (bundles Sifter and Microplugin dependencies – also available un-minified for debugging, just remove the .min part) and css/selectize.default.css.

Selectize is available at cdnjs.

Usage

$('select').selectize(options);

The available options are documented here.

IE8 Support

To support Internet Explorer 8, es5-shim must be added your page.

<!--[if lt IE 9]><script src="http://cdnjs.cloudflare.com/ajax/libs/es5-shim/2.0.8/es5-shim.min.js"></script><![endif]-->

Custom Builds

By default, all plugins are included. To hand-pick what plugins (if any) to include, run grunt with the "--plugins" flag. After this completes, grab the files you need from the "dist" folder.

# dependencies
npm install

# build selectize
grunt --plugins=
grunt --plugins=*
grunt --plugins=remove_button,restore_on_backspace

Contributing

When issuing a pull request:

  • please do not include/commit changes in the dist/ folder to avoid merge conflicts. A good way to include the right files is to use git gui or git add when committing to select the files you want to add to your commit.

  • please include tests with your feature so that we're not tempted to break it in the future!

Add an entry to the top of the CHANGELOG, and update the documentation in docs/ as needed. (Refactors and documentation changes don't need a changelog entry.)

Squash your commits together in one or a few complete, logical commits, with a concise and descriptive message. One commit means one feature/bugfix/thing that has changed, or a diff bringing the code one step forward to a better, working state.

Once your commit is nice and clean, and you want to discard the other changes, you can use git checkout . (that will erase changes to tracked files) and git clean [-i/--interactive] (to erase untracked files). However, be careful with those commands, as their function is to erase things/changes.

Tests

Please ensure all the tests pass:

npm test # phantomjs
BROWSERS=Firefox npm test
BROWSERS=Firefox,Chrome npm test
BROWSERS=Firefox,Chrome,Safari npm test

Local environment

To run Selectize locally:

npm start

You can then run the examples in http://localhost:4000/examples/.

However, be careful not to add the dist/ files in your commit, as Grunt automatically regenerates the files in dist/ as the source is changed.

License

Copyright © 2013–2016 Brian Reavis & Contributors
Copyright © 2020-2021 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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].