sample skeleton application with dojo toolkit & arcgis js api v 4.30
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.
 
 
 
 
 
 

16 lines
521 B

{% load dojox.dtl.contrib.data %}
{% bind_data items to store as flickr %}
<div>
Type a tag and press enter: <input dojoAttachEvent="onkeypress: keyUp" value="beach">
<table>
<tr>
{% for item in flickr %}<td><img src="{{ item.imageUrlThumb }}" dojoAttachEvent="onclick: selectThumbnail" class="{{ item.imageUrl }}" /></td>{% endfor %}
<td width="100%"></td>
</tr>
<tr>
<td colspan="{{ flickr|length|add:1 }}">
{% if selected %}<img src="{{ selected }}" />{% endif %}
</td>
</tr>
</table>
</div>