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;
		}
Won't Fix
Last Updated: 15 Nov 2017 08:57 by ADMIN
Closed as duplicate of https://feedback.telerik.com/Project/108/Feedback/Details/125717-fix-radlivetile-throws-a-javascript-error-after-being-disposed-in-a-partial-postb
Completed
Last Updated: 12 Jul 2016 14:23 by ADMIN
Currently alt="" for the images and such a property will let the developers improve the accessibility of their pages.
Declined
Last Updated: 11 Jun 2021 11:57 by ADMIN
Created by: Alexis
Comments: 1
Category: TileList
Type: Feature Request
0
Would be incredibly handy if we could programmatically set the image to a byte array with the RadImageTile (or I guess RadImageAndTextTile). Right now you can only set it via the ImageURL but we don't want to store the image like that, we want to read the image from the DB, so we're reading it out as a byte array.

This is possible in your RadBinaryImage, I think, but not in the RadImageTile. 
Unplanned
Last Updated: 15 Feb 2023 00:41 by ADMIN
Created by: Siva
Comments: 1
Category: TileList
Type: Feature Request
0

Hello,

I have a RadTileList on my webform with total of 12 tiles in asp.net project and I have set the TileColumns=4 so I get to see 3 rows of tiles but the tiles order goes from Top to Bottom from first row but I would like it to go from Left to Right. 

I did see the "RightToLeft" option but that was not what I wanted to do.

I would like the tile numbers 1,2,3,4 to go left to right on the first row then continue 5,6,7,8 in the second row and the likes.

Would it be possible to add such features to set the Tile Direction Vertical/Horizontal?

Thanks

Completed
Last Updated: 10 Jul 2013 10:55 by ADMIN
ADMIN
Created by: Marin Bratanov
Comments: 0
Category: TileList
Type: Bug Report
0
Setting the CssClass property of a tile does not transfer the custom class attribute to the rendered markup. This means that custom classed cannot be used to create a cascade and style concrete tiles.
Completed
Last Updated: 18 Feb 2016 15:28 by ADMIN
Declined
Last Updated: 06 Nov 2020 16:11 by ADMIN
The current RadTileList TileGroup item is only settable as text.  Is it possible to modify this item to use a LayoutTemplate so that additional items could be added to the TileGroup area?
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>
Completed
Last Updated: 10 Jul 2013 10:25 by ADMIN
A postback occurs from the button, but its postback events are not raised (the Click event handler for the button)
1 2 3