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

90 lines
1.4 KiB
JavaScript
Raw Normal View History

Htk.Button = new Class
({
Extends: Htk.Field
,Tag: 'htk-button'
,Properties:
{
image:
{
type: String
,set: function (x)
{
this.img.src = x;
}
2015-09-16 16:11:15 +00:00
2016-09-19 06:40:18 +00:00
},
2016-09-24 14:32:31 +00:00
/* icon:
2016-09-19 06:40:18 +00:00
{
type: String
,set: function (x)
{
this.img.src = 'image/icon/light/'+ x +'.svg';
}
},
2016-09-24 14:32:31 +00:00
*/ tip:
{
type: String
,set: function (x)
{
if (x)
{
this.node.title = _(x);
this.img.title = _(x);
}
2015-09-16 16:11:15 +00:00
this.render ();
}
,get: function ()
{
return this.node.title;
}
},
showText:
{
type: Boolean
,set: function (x)
{
this._showText = x;
this.render ();
}
,get: function ()
{
return this._showText;
}
}
}
2015-09-16 16:11:15 +00:00
,_showText: false
,initialize: function (props)
{
this.createElement ('button');
this.node.className = 'htk-button';
this.node.addEventListener ('click', this.onClick.bind (this));
this.img = document.createElement ('img');
this.node.appendChild (this.img);
2015-11-09 08:14:33 +00:00
this.parent (props);
}
2015-09-16 16:11:15 +00:00
,render: function ()
{
if (this._textNode)
Vn.Node.remove (this._textNode);
if (this._showText && this.node.title)
{
this._textNode = document.createElement ('span');
this._textNode.appendChild (document.createTextNode (this.node.title));
this.node.appendChild (this._textNode);
}
}
,onClick: function ()
{
this.signalEmit ('click', this._form);
}
});