coreui-form-field-select2
v1.0.2
Published
CoreUI form field Select2
Downloads
3
Maintainers
Readme
Coreui form field select2
Install
npm install coreui-form-field-select2
Examples
<div id="single-select"></div>
<script>
let options = [
'--',
'Reactive',
'Solution',
'Conglomeration',
'Algoritm',
'Holistic',
];
CoreUI.form.create({
send : {
url : '/path/to/object/1',
method: 'post'
},
record : {
select_field: null
},
fields : [
{
type: 'select2', name: 'select_field', label: 'Select', width: 250, options: options, select2: {
placeholder: 'Choose one thing',
}
},
],
onSubmit: function (form, data) {
alert(JSON.stringify(data));
return false;
},
controls: [
{type: "submit", content: "Send"},
],
}).render('single-select');
</script>