You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.0 KiB
33 lines
1.0 KiB
dojo.provide("dojox.data.demos.widgets.PicasaView"); |
|
dojo.require("dijit._Templated"); |
|
dojo.require("dijit._Widget"); |
|
|
|
dojo.declare("dojox.data.demos.widgets.PicasaView", [dijit._Widget, dijit._Templated], { |
|
//Simple demo widget for representing a view of a Picasa Item. |
|
|
|
templateString: dojo.cache("dojox", "data/demos/widgets/templates/PicasaView.html"), |
|
|
|
//Attach points for reference. |
|
titleNode: null, |
|
descriptionNode: null, |
|
imageNode: null, |
|
authorNode: null, |
|
|
|
title: "", |
|
author: "", |
|
imageUrl: "", |
|
iconUrl: "", |
|
|
|
postCreate: function(){ |
|
this.titleNode.appendChild(document.createTextNode(this.title)); |
|
this.authorNode.appendChild(document.createTextNode(this.author)); |
|
this.descriptionNode.appendChild(document.createTextNode(this.description)); |
|
var href = document.createElement("a"); |
|
href.setAttribute("href", this.imageUrl); |
|
href.setAttribute("target", "_blank"); |
|
var imageTag = document.createElement("img"); |
|
imageTag.setAttribute("src", this.iconUrl); |
|
href.appendChild(imageTag); |
|
this.imageNode.appendChild(href); |
|
} |
|
});
|
|
|