hedera-web/js/htk/field/search-entry.js

53 lines
919 B
JavaScript
Raw Normal View History

2015-11-19 13:57:23 +00:00
2016-09-26 09:28:47 +00:00
module.exports = new Class
2015-11-19 13:57:23 +00:00
({
Extends: Htk.Field
,Tag: 'htk-search-entry'
2016-10-16 14:16:08 +00:00
,render: function ()
2015-11-19 13:57:23 +00:00
{
2016-10-16 14:16:08 +00:00
var div = this.createRoot ('div');
2015-11-19 13:57:23 +00:00
div.className = 'htk-search-entry';
2016-09-26 09:28:47 +00:00
var icon = new Htk.Icon ({
icon: 'search',
alt: _('Search')
});
div.appendChild (icon.node);
2015-11-19 13:57:23 +00:00
2016-10-16 14:16:08 +00:00
var input = this.createElement ('input');
2015-11-19 13:57:23 +00:00
input.className = 'entry';
input.type = 'text';
input.placeholder = _('Search');
input.addEventListener ('change', this._onChange.bind (this));
div.appendChild (input);
this._input = input;
}
,_onChange: function (event)
{
var newValue;
if (this._input.value === '')
newValue = undefined;
else
newValue = this._input.value;
this.valueChanged (newValue);
}
,putValue: function (value)
{
if (!value)
this._input.value = '';
else
this._input.value = value;
}
,setEditable: function (editable)
{
this.node.readOnly = !editable;
}
});