0
1
Fork 0
hedera-web-mindshore/js/htk/columns/spin/index.js

65 lines
1.3 KiB
JavaScript
Raw Normal View History

2022-06-06 16:02:17 +00:00
require('./style.scss');
2016-09-26 09:28:47 +00:00
2022-06-06 08:53:59 +00:00
module.exports = new Class({
Extends: Htk.Column
,Tag: 'htk-column-spin'
2022-06-06 08:53:59 +00:00
,Properties: {
/**
* The text to append to the number.
2022-05-26 06:08:31 +00:00
*/
2022-06-06 08:53:59 +00:00
unit:{
type: String
,value: null
},
/**
* The number of decimal places to display.
2022-05-26 06:08:31 +00:00
*/
digits: {
type: Number
,value: 0
}
}
2022-05-26 06:08:31 +00:00
,initialize: function(props) {
this._cssClass = 'cell-spin';
2022-06-06 16:02:17 +00:00
Htk.Column.prototype.initialize.call(this, props);
}
2022-05-26 06:08:31 +00:00
,renderHeader: function() {
2022-06-06 16:02:17 +00:00
var th = Htk.Column.prototype.renderHeader.call(this, );
th.className = 'cell-spin';
return th;
}
2022-05-26 06:08:31 +00:00
,render: function(tr) {
2022-06-06 16:02:17 +00:00
var td = Htk.Column.prototype.render.call(this, tr);
var valueString = null;
if (this.value !== null && this.value !== undefined)
2022-05-26 06:08:31 +00:00
valueString = new Number(this.value).toFixed(this.digits);
2022-05-26 06:08:31 +00:00
if (this.editable) {
var entry = this.createElement('input');
entry.type = 'text';
2022-05-26 06:08:31 +00:00
entry.addEventListener('change', this.inputChanged.bind(this, tr, entry));
td.appendChild(entry);
if (valueString)
entry.value = valueString;
2022-05-26 06:08:31 +00:00
} else if (valueString) {
if (this.unit)
2015-02-01 03:21:54 +00:00
valueString = valueString + this.unit;
2022-05-26 06:08:31 +00:00
var text = this.createTextNode(valueString);
td.appendChild(text);
}
return td;
}
2022-05-26 06:08:31 +00:00
,inputChanged: function(tr, entry) {
this.changed(tr, parseInt(entry.value));
}
});