forked from verdnatura/hedera-web
36 lines
570 B
JavaScript
36 lines
570 B
JavaScript
|
|
module.exports = new Class({
|
|
Extends: Htk.Column
|
|
,Tag: 'htk-column-link'
|
|
,Properties: {
|
|
/**
|
|
* The link url.
|
|
*/
|
|
href:{
|
|
type: String
|
|
,value: null
|
|
},
|
|
/**
|
|
* the target where the link is opened.
|
|
*/
|
|
target:{
|
|
type: String
|
|
,value: null
|
|
}
|
|
}
|
|
|
|
,render: function(tr) {
|
|
var link = this.createElement('a');
|
|
link.href = this.href;
|
|
link.appendChild(this.createTextNode(this.value));
|
|
|
|
if (this.target)
|
|
link.target = this.target;
|
|
|
|
var td = Htk.Column.prototype.render.call(this, tr);
|
|
td.appendChild(link);
|
|
return td;
|
|
}
|
|
});
|
|
|