Skip to content

Instantly share code, notes, and snippets.

@jbristowe
Created April 13, 2012 03:14
Show Gist options
  • Save jbristowe/2373322 to your computer and use it in GitHub Desktop.
Save jbristowe/2373322 to your computer and use it in GitHub Desktop.
Target Elements with Template and Alternating Template for Rendering ListView Items
<div id="listView"></div>
<div id="pager"></div>
<script type="text/x-kendo-tmpl" id="template">
<div class="tweet">
<img class="profileImage" src="${profile_image_url}" />
<strong>${from_user_name}</strong>
<a href="http://twitter.com/${from_user}">@${from_user}</a>
<p class="text">${text}</p>
</div>
</script>
<script type="text/x-kendo-tmpl" id="altTemplate">
<div class="altTweet">
<img class="profileImage" src="${profile_image_url}" />
<strong>${from_user_name}</strong>
<a href="http://twitter.com/${from_user}">@${from_user}</a>
<p class="text">${text}</p>
</div>
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment