2
0
mirror of https://github.com/frappe/books.git synced 2024-09-21 03:39:02 +00:00
books/client/view/controls/select.js

25 lines
682 B
JavaScript
Raw Normal View History

2018-01-12 12:25:07 +00:00
const BaseControl = require('./base');
2018-02-08 11:45:32 +00:00
const frappe = require('frappejs');
2018-01-12 12:25:07 +00:00
class SelectControl extends BaseControl {
2018-02-08 11:45:32 +00:00
makeInput() {
2018-03-05 16:45:21 +00:00
this.input = frappe.ui.add('select', 'form-control', this.inputContainer);
2018-01-12 12:25:07 +00:00
let options = this.options;
if (typeof options==='string') {
options = options.split('\n');
}
for (let value of options) {
let option = frappe.ui.add('option', null, this.input);
option.textContent = value;
option.setAttribute('value', value);
}
}
make() {
super.make();
this.input.setAttribute('row', '3');
}
};
module.exports = SelectControl;