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

38 lines
513 B
JavaScript

module.exports = new Class
({
Extends: Htk.Field
,Tag: 'htk-text'
,Properties:
{
/**
* Format that applies to the value.
**/
format:
{
type: String
,set: function (x)
{
this._format = _(x);
this.putValue (this._value);
}
,get: function ()
{
return this._format;
}
}
}
,_format: null
,render: function ()
{
this._node = this.createTextNode ('');
}
,putValue: function (value)
{
this._node.nodeValue = Vn.Value.format (value, this._format);
}
});