forked from verdnatura/hedera-web
47 lines
784 B
JavaScript
Executable File
47 lines
784 B
JavaScript
Executable File
Htk.ColumnButton = new Class
|
|
({
|
|
Extends: Htk.Column
|
|
,Tag: 'htk-column-button'
|
|
,Properties:
|
|
{
|
|
image:
|
|
{
|
|
type: String
|
|
,value: null
|
|
},
|
|
tip:
|
|
{
|
|
type: String
|
|
,value: null
|
|
}
|
|
}
|
|
|
|
,render: function (tr)
|
|
{
|
|
var td = this.parent (tr);
|
|
|
|
var button = document.createElement ('button');
|
|
button.className = 'cell-button';
|
|
button.addEventListener ('click',
|
|
this.buttonClicked.bind (this, this.value, tr, button));
|
|
td.appendChild (button);
|
|
|
|
var img = document.createElement ('img');
|
|
img.src = this.image;
|
|
button.appendChild (img);
|
|
|
|
if (this.tip)
|
|
{
|
|
button.title = _(this.tip);
|
|
img.title = _(this.tip);
|
|
}
|
|
|
|
return td;
|
|
}
|
|
|
|
,buttonClicked: function (value, tr, button)
|
|
{
|
|
this.signalEmit ('clicked', value, tr.rowIndex - 1, button);
|
|
}
|
|
});
|