Completed
Last Updated: 29 Jul 2015 06:56 by ADMIN
If a target field is not provided in the data source and you need all tiles to have the same Target, you can use the TileCreated event to set this property. A sample is attached.
Completed
Last Updated: 04 Jul 2014 08:17 by ADMIN
When items are data bound, their IDs should be stored in the ViewState so the next time they are recreated (upon a postback), they have the same IDs, so postback events can be raised.
Also, when a new datasource is provided to the tilelist, keeping track of the IDs will let the control create tiles with the same IDs that were used instead of incremental ones.
Both of these will prevent the tiles ID change in the first two page loads after a DataBind() call.
Note that this applies only for the case when AppendDataBoundItems is false; when it is true new datasources should only add items.

A workaround is to set IDs to the tiles manually when they are created (this can be done with a simple counter variable).
To accommodate for rebinding the tilelist, its controls collection must be cleared prior to databinding as a workaround.
A sample is attached that shows these in action.
Completed
Last Updated: 24 Mar 2015 14:01 by ADMIN
Completed
Last Updated: 29 Feb 2016 09:04 by ADMIN
The Click event is not raised at all.
Completed
Last Updated: 21 Apr 2017 14:10 by ADMIN
ADMIN
Created by: Marin Bratanov
Comments: 0
Category: TileList
Type: Bug Report
0
Here is a set of rules to get back the colors

		div.RadTile_Bootstrap
		{
			color: #fff;
			background-color: #337ab7;
		}
		
		div.RadTile_BlackMetroTouch,
		div.RadTile_Metro
		{
			color: #fff;
			background-color: #25a0da;
		}

		div.RadTile_Office2010Blue
		{
			color: #333;
			background-color: #dbe3ee;
		}

		div.RadTile_Office2010Black
		{
			color: #fff;
			background-color: #6f6f6f;
		}

		div.RadTile_Office2010Silver
		{
			color: #333;
			background-color: #e2e5e9;
		}

		div.RadTile_Outlook
		{
			color: #333;
			background-color: #d6e6f4;
		}

		div.RadTile_Silk
		{
			color: #fff;
			background-color: #14afca;
		}

		div.RadTile_Simple
		{
			color: #333;
			background-color: #ececec;
		}

		div.RadTile_Sunset
		{
			color: #333;
			background-color: #e88d49;
		}

		div.RadTile_Telerik
		{
			color: #333;
			background-color: #eee;
		}

		div.RadTile_Vista
		{
			color: #333;
			background-color: #eff7fc;
		}

		div.RadTile_Web20
		{
			color: #333;
			background-color: #e7f1ff;
		}

		div.RadTile_WebBlue
		{
			color: #333;
			background-color: #5d9fb7;
		}

		div.RadTile_Windows7 
		{
			color: #1e395b;
			background-color: #b8cbde;
		}
Completed
Last Updated: 18 Feb 2016 15:28 by ADMIN
Completed
Last Updated: 01 May 2018 14:15 by ADMIN
With the latest release of Firefox version 59.0, we are not able to click on tiles in a tilelist and have them navigate to the specified NavigateURL.  We verified this even on the demo on the Telerik site:

https://demos.telerik.com/aspnet-ajax/tilelist/examples/overview/defaultcs.aspx

Workaround
<telerik:RadTileList RenderMode="Lightweight" runat="server" ID="RadTileList1" ScrollingMode="None" Width="640px"
 SelectionMode="Single" EnableDragAndDrop="true"></telerik:RadTileList>
<script>
    var $T = Telerik.Web.UI;
    $T.RadTileList.prototype._handleClickAfterDragging = function (draggable, args) {
        var tile = draggable.tile,
            shouldHandleClick = this.get_enableDragAndDrop() &&
                                !this._isTouchEvent(args._domEvent) &&
                                draggable._deltaX < 5 &&
                                draggable._deltaY < 5;
  
        if (shouldHandleClick) {
            tile.set_dragStarted(false);
            if (!$telerik.isMobileSafari) {
                tile._mouseClickHandler();
            }
            draggable._deltaY = 0;
            draggable._deltaX = 0;
        }
    }
</script>
1 2