1.0.6 • Published 7 years ago

chosen-readonly v1.0.6

Weekly downloads
128
License
MIT
Repository
github
Last release
7 years ago

Chosen Readonly

Chosen Readonly is a plugin that enables the support of the readonly attribute for chosen selects.

Install

Yarn, NPM, or Bower

yarn add chosen-readonly

npm install chosen-readonly

bower install chosen-readonly

Rails

# Gemfile
source 'https://rails-assets.org' do
  gem 'rails-assets-chosen-readonly'
end


# app/assets/javascripts/application.js
/*
 *= require chosen
 *= require chosen-readonly
*/

Usage

/* Makes elements readonly if they already have the readonly attribute */
$('select').chosen().chosenReadonly();

/* Sets all elements as readonly */
$('select').chosen().chosenReadonly(true);

/* Remove readonly from all elements */
$('select').chosen().chosenReadonly(false);

/* Anytime you want to trigger the readonly check just run */
$('select').trigger('chosen:updated');

Credits

Created by Weston Ganger - @westonganger

Plugin based off off this jsFiddle by @eirc

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago