2016-09-26 09:28:47 +00:00
|
|
|
|
|
|
|
module.exports = new Class
|
2015-03-09 08:36:54 +00:00
|
|
|
({
|
|
|
|
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
|
|
|
|
|
2016-10-16 14:16:08 +00:00
|
|
|
,render: function ()
|
2015-03-09 08:36:54 +00:00
|
|
|
{
|
2016-10-16 14:16:08 +00:00
|
|
|
this._node = this.createTextNode ('');
|
2015-03-09 08:36:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
,putValue: function (value)
|
|
|
|
{
|
2016-10-16 14:16:08 +00:00
|
|
|
this._node.nodeValue = Vn.Value.format (value, this._format);
|
2015-03-09 08:36:54 +00:00
|
|
|
}
|
|
|
|
});
|