This question is locked. New answers and comments are not allowed.
Can you add a custom property to the hubtiles like adding a url property. what im trying to achieve is whenever I have a collection of images, these images should have a url and when the tile is invoke it will navigate to the specific url.
<div id="bwTileMain" class="liveTiles" style="width: 450px; height: 269px; left: 30px; top: 0px; border: none; float: left" data-win-control="Telerik.UI.RadPictureRotatorHubTile" data-win-options="{title:'Promotions',url:'www.yahoo.com',updateInterval:5,picturesSource:SampleWindows8.picturesSourceBwMain}"></div>
I have read your sample on the help document but the problem is your getting it by the id.
var hubTileCtrl = new Telerik.UI.RadHubTile(document.getElementById("hubTile"), { imageSource: "/images/controls/Hubtile.png", title: "RadHubTile", ontileinvoked: function (e) { WinJS.Navigation.navigate("/pages/examples/" + e.target.element.id + "/" + e.target.element.id + ".html"); }});