Skip to content

Latest commit

 

History

History
68 lines (51 loc) · 1.9 KB

README.md

File metadata and controls

68 lines (51 loc) · 1.9 KB

Backbone-Forms Chosen editor

Code Climate Build Status Coverage Status Dependency Status devDependencies Status peerDependencies Status Downloads

A Backbone-Forms editor that covers Chosen functionality.

Installation

Via bower:

bower install backbone-forms-chosen

Via npm:

npm install backbone-forms-chosen

Usage

Just replace Select editor type with chosen.

Change placeholder

Add data-placeholder to editorAttrs.

schema: {
  states: {
    type: 'chosen',
    title: 'States',
    options: states,
    editorAttrs: {
      multiple: 'multiple',
      'data-placeholder': 'Select countries...'
    }
  }
}

Add extra chosen editor options

Add editorOptions to schema.

schema: {
  states: {
    type: 'chosen',
    title: 'States',
    options: states,
    editorOptions: {
      no_results_text: 'Oops, nothing found!'
    }
  }
}

Demo

https://tomi77.github.io/backbone-forms-chosen/