0
1
Fork 0
hedera-web-mindshore/web/js/htk/field/entry.js

39 lines
617 B
JavaScript
Executable File

Htk.Entry = new Class
({
Extends: Htk.Field
,Tag: 'htk-entry'
,initialize: function (props)
{
this.parent (props);
this.createElement ('input');
this.node.type = 'text';
this.node.addEventListener ('change', this.onChange.bind (this));
}
,onChange: function (event)
{
var newValue;
if (this.node.value == '')
newValue = null;
else
newValue = this.node.value;
this.valueChanged (newValue);
}
,putValue: function (value)
{
if (!value)
this.node.value = '';
else
this.node.value = value;
}
,setEditable: function (editable)
{
this.node.readOnly = !editable;
}
});