1. It's difficult to place tiles to the right of the last tile in a row. i.e. On the Add/Remove demo, remove the Total Deals tile, then try to add the New Customers tile to the end of the line where the Total Deals tile was, it will not let you place the tile until you drag it over the Expense this Period tile.
2. tiles still constantly jump around when placing elements under many circumstances. i.e. on the events demo, move the cherry blossoms tile directly to the left of shells (without moving the tile up)
3. if there are two open spaces, you cannot put a tile in the second space until the first one is filled. i.e. on the Overview demo, move the Visitors tile straight up to the top, then try to place the Currently tile under the Conversion Rate tile, it will not allow you to place it, the only option is next to the Most Visited Pages tile.
Hi Team,
I would like to request a way to make it easier to change the state of the tiles(Adding and Removing) using outside components such as the Kendo UI CheckBoxGroup.
Thanks!
The tileLayout feature could use some help to be useful. It should have the following additional features:
Hello,
I reallt think a refresh feature available for each container item would be great.
What I exactly need is a way to refresh the content of a card, without setting all the cards again by SetOption. You can ask me more about how I would like it to be (in case you need more feedback).
Thank you!
Diana Vijulie
$("#tilelayout").kendoTileLayout({
containers: [
{
colSpan: 1,
rowSpan: 1,
header: {
text: "Item one"
},
bodyTemplate: kendo.template($("#first").html()),
attributes:{
class: "myClass"
}
},
{
colSpan: 1,
rowSpan: 1,
header: {
text: "Item two"
},
bodyTemplate: kendo.template($("#second").html())
}
],
columns: 4
});
Reproduction:
Actual result: only item B can be heightened
Expected result: all items can be heightened
Reproduction:
Expected result
Actual result
Cause
In the "_initContainers" function, when looping over containers, the variable "headerContent" still holds the content of the previous header.
Hi Team,
I'd like to request the functionality to set each row of the TileLayout to a particular height. There is the rowsHeight property but this seems to apply to all rows on the TileLayout.
Thank you!
Bug report
When a draggable item that is part of a tile of the Kendo UI TileLayout is dragged, JavaScript errors are thrown. This is due to the fact that the Draggable widget, internally used, calls the drag event of the widget instances inside the TileLayout.
Reproduction of the problem
1. Edit the live demo in a Dojo: https://demos.telerik.com/kendo-ui/tilelayout/index
2. Make any of the grids, resizable or groupable.
3. Resize or group a column.
4. JavaScript errors are thrown.
Environment
* **Kendo UI version:** 2020.2.617
* **jQuery version:** 1.124
* **Browser:** [all]
Hi Team,
I'd like to request a way to bind a Kendo UI TileLayout to a dataSource. For example, binding to the containers would be a nice feature especially if I could bind from a database.
Thank you!
Bug report
setOptions throws an error when toggling reorderable on and off
Reproduction of the problem
Dojo: https://dojo.telerik.com/eReWexEL
Current behavior
Error is thrown in the console when the following is called:
tileLayout.setOptions({ reorderable: false});
tileLayout.setOptions({ reorderable: true });
Expected/desired behavior
No error shall be thrown.
Environment
Kendo UI version: all
jQuery version: all
Browser: [all]
Hi Team,
I'd like to request adding separators for the Kendo UI TileLayout as part of the built-in API.
Thank you!
Reproduction:
Actual result: no item can be heightened
Expected result: all items can be heightened
The TileLayout is currently not responsive and the column count isn't relative to the screen size;
Currently the columns shrink to fit the screen, whereas a desired behavior is to change the layout to accommodate for only one column on mobile device screens.
A temporary solution shown in this dojo - https://dojo.telerik.com/iLOmETAR/2, however this workaround is not fully compatible and might break the reordering and resizing of items.
We're looking into adopting your TileLayout control for a dashboard containing charts and tables. However, it doesn't seem like it supports remote content. ie all the content of each container has to be within a kendoTemplate on the same page. This seems like a huge limitation.
Please provide a way of loading the container content via a remote call, such as in your other controls.
Kendo Window example:
myWindow.kendoWindow({ width: "615px", title: "Rams's Ten Principles of Good Design", content: "../content/web/window/ajax/ajaxContent.html", close: onClose });
Hi Team,
I'd like to request the Kendo UI TileLayout to have a Select event added to its API.
Thank you!
This can be observed at https://demos.telerik.com/kendo-ui/tilelayout/reordering : when you reorder the items, their "order" property changes, but their order in the HTML source stays the same. This makes the visual layout differ from the logical one.
The Sortable component, however, behaves correctly by reordering items in the HTML source.
See also: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout/CSS_Grid_Layout_and_Accessibility
Reproduction:
Expected result:
As per https://docs.telerik.com/kendo-ui/api/javascript/ui/tilelayout/events/resize , e.container should be a jQuery object
Actual result:
e.container is undefined