Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F1125770
PicasaView.js
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
PicasaView.js
View Options
if
(
!
dojo
.
_hasResource
[
"dojox.data.demos.widgets.PicasaView"
]){
//_hasResource checks added by build. Do not use _hasResource directly in your code.
dojo
.
_hasResource
[
"dojox.data.demos.widgets.PicasaView"
]
=
true
;
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
:
"<table class=\"picasaView\">\n\t<tbody>\n\t\t<tr class=\"picasaTitle\">\n\t\t\t<td>\n\t\t\t\t<b>\n\t\t\t\t\tTitle:\n\t\t\t\t</b>\n\t\t\t</td>\n\t\t\t<td dojoAttachPoint=\"titleNode\">\n\t\t\t</td>\n\t\t</tr>\n\t\t<tr>\n\t\t\t<td>\n\t\t\t\t<b>\n\t\t\t\t\tAuthor:\n\t\t\t\t</b>\n\t\t\t</td>\n\t\t\t<td dojoAttachPoint=\"authorNode\">\n\t\t\t</td>\n\t\t</tr>\n\t\t<tr>\n\t\t\t<td colspan=\"2\">\n\t\t\t\t<b>\n\t\t\t\t\tSummary:\n\t\t\t\t</b>\n\t\t\t\t<span class=\"picasaSummary\" dojoAttachPoint=\"descriptionNode\"></span>\n\t\t\t</td>\n\t\t</tr>\n\t\t<tr>\n\t\t\t<td dojoAttachPoint=\"imageNode\" colspan=\"2\">\n\t\t\t</td>\n\t\t</tr>\n\t</tbody>\n</table>\n\n"
,
//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
);
}
});
}
File Metadata
Details
Attached
Mime Type
text/html
Expires
Wed, Jun 18, 07:39 (4 w, 1 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
27265
Default Alt Text
PicasaView.js (1 KB)
Attached To
rZEDHG ZedLegacy
Event Timeline
Log In to Comment