How to use selectize - 1 common examples

To help you get started, we’ve selected a few selectize examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github TriplyDB / YASGUI / src / jquery / endpointCombi.js View on Github external
"use strict";
var $ = require("jquery"), selectize = require("selectize"), utils = require("yasgui-utils");

selectize.define("allowRegularTextInput", function(options) {
  var self = this;

  this.onMouseDown = (function() {
    var original = self.onMouseDown;
    return function(e) {
      if (!self.$dropdown.is(":visible")) {
        //receiving focus via mouse click
        original.apply(this, arguments);

        //this is a trick to make each value editable
        //a bit strange, but the only trick to avoid static values
        //and, this allows copy-ing (ctrl-c) of endpoints as well now
        var val = this.getValue();
        this.clear(true);
        this.setTextboxValue(val);
        this.refreshOptions(true);

selectize

Selectize is a jQuery-based custom <select> UI control. Useful for tagging, contact lists, country selectors, etc.

Apache-2.0
Latest version published 6 years ago

Package Health Score

72 / 100
Full package analysis

Popular selectize functions