forked from verdnatura/hedera-web
50 lines
792 B
JavaScript
50 lines
792 B
JavaScript
|
|
||
|
var Widget = require('./widget');
|
||
|
|
||
|
module.exports = new Class({
|
||
|
Extends: Widget,
|
||
|
Tag: 'htk-step',
|
||
|
Properties: {
|
||
|
name: {
|
||
|
type: String,
|
||
|
value: null
|
||
|
},
|
||
|
validateFunc: {
|
||
|
type: Function,
|
||
|
value: null
|
||
|
},
|
||
|
showFunc: {
|
||
|
type: Function,
|
||
|
value: null
|
||
|
}
|
||
|
},
|
||
|
|
||
|
initialize: function(props) {
|
||
|
var node = this.createRoot('div');
|
||
|
node.className = 'htk-step';
|
||
|
this.parent(props);
|
||
|
},
|
||
|
|
||
|
show: function() {
|
||
|
if (this.showFunc)
|
||
|
this.showFunc();
|
||
|
this.node.style.display = 'block';
|
||
|
},
|
||
|
|
||
|
hide: function() {
|
||
|
this.node.style.display = 'none';
|
||
|
},
|
||
|
|
||
|
validate: function() {
|
||
|
if (this.validateFunc)
|
||
|
return this.validateFunc();
|
||
|
return true;
|
||
|
},
|
||
|
|
||
|
appendChild: function(child) {
|
||
|
if (child instanceof Widget)
|
||
|
child = child.node;
|
||
|
this.node.appendChild(child);
|
||
|
}
|
||
|
});
|