You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
524 B
20 lines
524 B
import ApplicationController from './application_controller' |
|
|
|
export default class extends ApplicationController { |
|
connect() { |
|
super.connect() |
|
|
|
var default_opts = { |
|
plugins: ['restore_on_backspace', 'remove_button'], |
|
searchField: ['text', 'optgroup'], |
|
valueField: "id", |
|
allowEmptyOption: false, |
|
showEmptyOptionInDropdown: true, |
|
emptyOptionLabel: true, |
|
hideSelected: true, |
|
placeholder: "Please Select" |
|
} |
|
|
|
$(".default-selectize").selectize(default_opts) |
|
} |
|
}
|
|
|