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 = this.parent(tr); td.appendChild(link); return td; } });