mobius1-selectr

WebJar for mobius1-selectr

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

mobius1-selectr
Last Version

Last Version

2.4.13
Release Date

Release Date

Type

Type

jar
Description

Description

mobius1-selectr
WebJar for mobius1-selectr
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/Mobius1/Selectr

Download mobius1-selectr

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/mobius1-selectr/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>mobius1-selectr</artifactId>
    <version>2.4.13</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/mobius1-selectr/
implementation 'org.webjars.npm:mobius1-selectr:2.4.13'
// https://jarcasting.com/artifacts/org.webjars.npm/mobius1-selectr/
implementation ("org.webjars.npm:mobius1-selectr:2.4.13")
'org.webjars.npm:mobius1-selectr:jar:2.4.13'
<dependency org="org.webjars.npm" name="mobius1-selectr" rev="2.4.13">
  <artifact name="mobius1-selectr" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='mobius1-selectr', version='2.4.13')
)
libraryDependencies += "org.webjars.npm" % "mobius1-selectr" % "2.4.13"
[org.webjars.npm/mobius1-selectr "2.4.13"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

Selectr

npm npm version license Average time to resolve an issue Percentage of issues still open

NO LONGER UNDER ACTIVE DEVELOPMENT. If you would like to take over development please contact me and I'll transfer ownership.

A lightweight, dependency-free, mobile-friendly select box replacement written in vanilla javascript. Just 6.5KB minified and gzipped. Similar to Select2 and Chosen, but without the dependencies.

Supports most modern mobile and desktop browsers including IE9.

Don't forget to check the wiki out and view some demos.

Pull requests accepted!


Features:

  • Supports single and multiple select boxes
  • Supports optgroups
  • Custom datasets
  • Searchable options
  • Tagging support
  • Custom events
  • Custom styling
  • Native select UI for mobile devices
  • Dynamically add options
  • Much more...

Documentation | Demo


Install

bower

bower install mobius1-selectr --save

npm

npm install mobius1-selectr --save

Browser

Grab the files from one of the CDNs and include them in your page:

<link href="https://unpkg.com/mobius1-selectr@latest/dist/selectr.min.css" rel="stylesheet" type="text/css">
<script src="https://unpkg.com/mobius1-selectr@latest/dist/selectr.min.js" type="text/javascript"></script>

//or

<link href="https://cdn.jsdelivr.net/gh/mobius1/selectr@latest/dist/selectr.min.css" rel="stylesheet" type="text/css">
<script src="https://cdn.jsdelivr.net/gh/mobius1/selectr@latest/dist/selectr.min.js" type="text/javascript"></script>

You can replace latest with the required release number if needed.

CDNs courtesy of unpkg and jsDelivr


Initialisation

HTML

Start with a standard select box you want to convert:

<select id="mySelect">
	<option value="value-1">Value 1</option>
	<option value="value-2">Value 2</option>
	<option value="value-3">Value 3</option>
	...
</select>

Javascript

You can then instantiate Selectr by passing a reference to your select box as the first parameter as either a DOM node or a CSS3 selector string:

new Selectr(document.getElementById('mySelect'));

// or

new Selectr('#mySelect');

Selectr accepts the options object as a second parameter:

new Selectr('#mySelect', {
	searchable: false,
	width: 300
});

Contributors


If this project helps you then you can grab me a coffee or beer to say thanks.

paypal


License

Copyright 2016 Karl Saunders

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Versions

Version
2.4.13
2.4.8