Skip to content
This repository has been archived by the owner on Sep 19, 2019. It is now read-only.

tntp/knockout-select2

 
 

Repository files navigation

Select2 v4 binding handler for Knockout

Build status Bower version NuGet version

Usage

HTML

<select data-bind="select2: options" ></select>

JS

ko.applyBindings({
    options : { } // select2 options
});

This binding is written in AMD. It returns the binding object. It will attach itself to knockout.bindingHandlers.select2 once required for the first time. This can be overridden with a config section in your requirejs config like shown below.

requirejs.config({
  config: {
    'bower_components/knockout-select2v4/src/knockout-select2': {
        name: 'someOtherName'
    }
  }
});

Dependencies

  • jQuery
  • knockout
  • select2

For accurate versions check bower.json

About

Select2 v4 binding handler for Knockout

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 64.3%
  • HTML 35.7%