Declined
Last Updated: 13 Nov 2015 08:43 by ADMIN
Created by: zAxis
Comments: 1
Category: TileList
Type: Bug Report
1
When clicking a tile to navigate, the drag/drop events all fire.
Completed
Last Updated: 13 Aug 2013 09:45 by zAxis
RadTileList currently has the EnableDragAndDrop behavior but no way to react to these events.

Also, add RadTileList to the category list in the feedback portal
Completed
Last Updated: 16 Sep 2013 11:58 by ADMIN
Unplanned
Last Updated: 30 Apr 2014 08:23 by ADMIN
ADMIN
Created by: Danail Vasilev
Comments: 0
Category: TileList
Type: Feature Request
0

			
Completed
Last Updated: 26 Mar 2014 15:09 by ADMIN
A possible workaround is to cancel the OnClientClicking and OnClientSelecting events of the tile. Additionally, add a custom CSS class that will also enable you to apply some custom styling to disabled tiles, because most browsers do not have a disabled state for div elements. The CSS class is what is used to distinguish disabled tiles instead of the disabled attribute. NOTE: this will be fixed in the Q1 2014 SP1 release.

Here is a workaround example for RadTileList:

<script type="text/javascript">
	function preventDisabledTileClicks(tileList, args)
	{
		var tile = args.get_tile();
		if ($telerik.$(tile.get_element()).hasClass("disabledTile"))
		{
			args.set_cancel(true);
		}
	}
</script>
			
<telerik:RadTileList ID="RadTileList1" runat="server" SelectionMode="Multiple"
			OnClientTileSelecting="preventDisabledTileClicks" OnClientTileClicking="preventDisabledTileClicks">
	<Groups>
		<telerik:TileGroup>
			<telerik:RadTextTile runat="server" ID="S5_1" Text="5S">
			</telerik:RadTextTile>
			<telerik:RadTextTile runat="server" ID="OEE_2" Text="OEE" CssClass="disabledTile" Enabled="false">
			</telerik:RadTextTile>
			<telerik:RadTextTile runat="server" ID="SMED_3" Text="SMED" CssClass="disabledTile" Enabled="false">
			</telerik:RadTextTile>
			<telerik:RadTextTile runat="server" ID="VSM_4" Text="VSM" CssClass="disabledTile" Enabled="false">
			</telerik:RadTextTile>
			<telerik:RadTextTile runat="server" ID="RCM_5" Text="RCM" CssClass="disabledTile" Enabled="false">
			</telerik:RadTextTile>
			<telerik:RadTextTile runat="server" ID="TPM_6" Text="TPM" CssClass="disabledTile" Enabled="false">
			</telerik:RadTextTile>
		</telerik:TileGroup>
	</Groups>
</telerik:RadTileList>

If you are using Standalone tiles you can attach to their OnClientSelecting and OnClientClicking events. Instead of getting the tile from the event arguments, you will get it as the first argument the handler receives.
To make this more reusable, you can use ASP Themes to apply this on an application level and include the script in a common script on a master page.
Completed
Last Updated: 06 Jan 2015 09:34 by ADMIN
This issue manifests only when there is a single column of tiles, i.e., there are no more groups and no second column of tiles exists in the group. If the tile number can be expected, you can change the Height/TileRows property to create two columns. Or, split the tiles between two groups. Of course, setting EnableDragAndDrop to false will also eliminate the issue.
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: 18 Feb 2014 11:55 by ADMIN
With more than 9 columns (36 wide tiles or 72 square tiles with TileRows=4) the subsequent tile columns fall down on a second row.
With TileRows=2 the breaking point would be 19 wide or 37 square tiles.

Ways around this are:
- separating tiles into more groups, if possible. When databinding the DataGroupNameField is used to point to the desired group name as a field in the datasource
- when creating tiles programmatically you can count them and create new groups when needed
- if you do not need any special functionality provided by RadTileList you can consider creating standalone tiles
Completed
Last Updated: 24 Mar 2015 14:01 by ADMIN
Completed
Last Updated: 14 Sep 2021 09:53 by ADMIN
Release Q2 2014
A possible workaround is to override the CSS for tiles that need no selection abilities:
	<telerik:RadContentTemplateTile runat="server" ID="RadContentTemplateTile1" EnableSelection="false" CssClass="noSelection">
	</telerik:RadContentTemplateTile>

	.noSelection div.rtileSelectedIcon
	{
		display: none;
	}
	div.RadTile.rtileSelected.noSelection
	{
		border: 2px solid transparent;
	}
Completed
Last Updated: 08 Nov 2013 14:19 by ADMIN
The same number of tiles that are hidden from the given group are lost from its end upon postback.
Unplanned
Last Updated: 03 Nov 2020 11:20 by ADMIN
Until this feature is implemented, you can use the TileDataBound event (http://docs.telerik.com/devtools/aspnet-ajax/controls/tilelist/server-side-programming/events/ontiledatabound) to set properties of the tiles and their child controls.
Won't Fix
Last Updated: 22 Jul 2016 06:10 by ADMIN
The client-side setter for EnableDragAndDrop still lets the user drag tiles, even though the other tiles are not reordered, and releasing the tile puts it back in its original place. Dragging should not be available at all.
Completed
Last Updated: 14 Sep 2021 10:06 by ADMIN
Release Q1 2016
Sometimes the OnClientClicked event is fired ony after the second tap, the first shows the peek template. Sometimes this can also be observed with the NavigateUrl. It is easiest seen when JS code is executed from the NavigateUrl, e.g.:  NavigateUrl="javascript:CDRequestMenu()"
This is related to the fact that there are no separate events on a touch device for mouseover, mousedown, click and mouseup.
Completed
Last Updated: 29 Feb 2016 09:04 by ADMIN
The Click event is not raised at all.
Completed
Last Updated: 24 Apr 2015 11:15 by ADMIN
Tap on a tile to execute its navigation or rather some JavaScript. Expected behavior is for the click event to fire. Actual result is that the tile's drag is initiated - the DragStart event on the tilelist fires and the tile gets the big z-index, and you can drag it around. This behavior does not manifest when there is only one tilegroup.
Setting EnableDragAndDrop to false will alleviate this, but will remove the drag-and-drop functionality.
Unplanned
Last Updated: 03 Nov 2020 14:59 by ADMIN
If you use the code from the following help article: http://docs.telerik.com/devtools/aspnet-ajax/controls/tilelist/how-to/responsive-layout-and-dynamic-height#responsive-layout-and-dynamic-height and set ScrollingMode property of the RadTileList control to Accelerated after re-sizing the window it is possible to scroll vertically.

http://screencast.com/t/KtCjTSAy2558