Completed
Last Updated: 13 Nov 2015 09:17 by Flavio
ADMIN
Created by: Marin Bratanov
Comments: 5
Category: TileList
Type: Feature Request
8
This is a visible title for each group (separate from the Group.Name property), like in the Windows 8.1 Start.
Unplanned
Last Updated: 01 Jun 2020 15:38 by ADMIN
Created by: Michael Rogers
Comments: 1
Category: TileList
Type: Feature Request
6
Sometime it would be better to have a layout that is not in the metro style.

Where the default is:

1 2 5 6
3 4 7 8 

There are scenarios where:

1 2 3 4 
5 6 7 8

would work much better.   The tile list fits in metro style apps well but has other uses where that style is not really desired.

There has been interest in this for the past couple years in the forum.  

Thanks
Michael
Unplanned
Last Updated: 14 Jun 2021 10:55 by ADMIN
ADMIN
Created by: Marin Bratanov
Comments: 1
Category: TileList
Type: Feature Request
4
Currently the mouse wheel scrolls a fixed amount of pixels. A property should allow the developer to control this speed. Leave your comments below on the way this property should be implemented (e.g. an enum or an integer from a given range).
Declined
Last Updated: 20 Apr 2022 15:51 by ADMIN
ADMIN
Created by: Vessy
Comments: 2
Category: TileList
Type: Feature Request
2
Allow Tiles with scrollable content to be both scrollable and draggable. Currently, if the draggable functionality of the control is enabled its content cannot be scrolled but is directly dragged (neither with the mouse button, nor its wheel).
Declined
Last Updated: 28 Jul 2016 12:59 by ADMIN
Created by: Tim Barton
Comments: 1
Category: TileList
Type: Feature Request
2
Add loading data on scrolling instead of loading all data at once?  Similar to the way Pinterest loads data on scrolling.
Unplanned
Last Updated: 04 Jun 2015 13:21 by ADMIN
ADMIN
Created by: Danail Vasilev
Comments: 0
Category: TileList
Type: Feature Request
2

			
Completed
Last Updated: 05 Jul 2013 11:56 by ADMIN
<telerik:RadIconTile ImageUrl="./images/info_icon.png" NavigateUrl="./add_loading_sign.aspx"></telerik:RadIconTile>

works,

<telerik:RadIconTile ImageUrl="~/images/info_icon.png" NavigateUrl="~/add_loading_sign.aspx"></telerik:RadIconTile>

Does not work, but it should.
Unplanned
Last Updated: 16 Nov 2022 09:31 by ADMIN
Created by: David
Comments: 1
Category: TileList
Type: Feature Request
1

RadImageTile takes focus but does not respond to any attempt to reproduce MouseClick through keyboard.
Declined
Last Updated: 27 May 2021 15:27 by ADMIN
Created by: Douw
Comments: 1
Category: TileList
Type: Feature Request
1
Hello,
Please add support to bind to System.Dynamic.DynamicObject: 
https://msdn.microsoft.com/en-us/library/system.dynamic.dynamicobject%28v=vs.110%29.aspx?f=255&MSPPError=-2147217396
Regards,
Douw
Unplanned
Last Updated: 13 Jan 2021 12:35 by ADMIN
Created by: Jaakko
Comments: 1
Category: TileList
Type: Feature Request
1

Hello, 

 

I would like to be able to move tiles between two RadTileLists. This may be through drag and drop or through an external button click.

Completed
Last Updated: 28 Jul 2016 12:24 by ADMIN
In some cases, according to a condition, after the data from a request arrives, the developer may want to prevent further requests from this same tile. This should be possible by setting the update interval to 0.

In the meantime, you can add dynamically (and remove when needed) a handler for the OnClientDataLoading event that will cancel the event and thus - the request. For example:
			<telerik:RadLiveTile ID="MyLivetile" UpdateInterval="1000" OnClientTemplateDataBound="MyLivetile_OnClientTemplateDataBound"
								 runat="server">
				<WebServiceSettings Path="Default.aspx" Method="MyPagemethod" UseHttpGet="false" />
				<ClientTemplate>
					some template that uses the data
				</ClientTemplate>
			</telerik:RadLiveTile>
			<script type="text/javascript">
				function MyLivetile_OnClientTemplateDataBound(sender, args) {
					var completed = args.get_dataItem().Completion;
					if (completed) {
						sender.add_dataLoading(preventLiveTileRequests);
					}
				}
				
				function preventLiveTileRequests(sender, args) {
					args.set_cancel(true);
				}
			</script>
Declined
Last Updated: 13 Nov 2015 09:20 by ADMIN
Created by: Giuseppe
Comments: 1
Category: TileList
Type: Feature Request
1
TileList is missing the "Value" property, now the same effect is obtained via HiddenFiled on ContentTemplateTile. This is in contrast with a lot of others Telrik Controls.

I'm asking Telrik to implement this functionality
Completed
Last Updated: 16 Sep 2013 11:58 by ADMIN
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
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

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. 
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?
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
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.
1 2