0
1
Fork 0
hedera-web-mindshore/js/htk/column/image.js

63 lines
938 B
JavaScript
Raw Normal View History

2016-09-26 09:28:47 +00:00
module.exports = new Class
({
Extends: Htk.Column
,Tag: 'htk-column-image'
,Properties:
{
/**
* The directory where the images are allocated.
**/
directory:
{
type: String
2016-05-02 13:05:49 +00:00
,value: null
},
/**
2016-05-02 13:05:49 +00:00
* The subdirectory where the images are allocated.
**/
subdir:
{
type: String
,value: null
},
/**
* Subdirectory where full images are allocated.
**/
fullDir:
{
type: String
2016-05-02 13:05:49 +00:00
,value: null
2016-09-24 14:32:31 +00:00
},
/**
* The REST connection used to upload the image.
**/
conn:
{
type: Vn.JsonConnection
}
}
,initialize: function (props)
{
this._cssClass = 'cell-image';
this.parent (props);
}
,render: function (tr)
{
2016-05-02 13:05:49 +00:00
var image = new Htk.Image ({
directory: this.directory
,subdir: this.subdir
,fullDir: this.fullDir
2016-09-24 14:32:31 +00:00
,value: this.value
2016-10-16 14:16:08 +00:00
,conn: this.conn
,doc: this.doc
});
2016-05-02 13:05:49 +00:00
var td = this.parent (tr);
2016-10-16 14:16:08 +00:00
td.appendChild (image.node);
2016-05-02 13:05:49 +00:00
return td;
}
});