Hi,
I am trying to use the Kendo TileLayout in JQuery, and I need to add some custom class to the tile body and tile header for some specific Tiles.
I can see that with the TileLayout in React, we can do this just by setting the className. But I can't find a similar thing in the document for the JQuery.
Could you please help me with this?
Thanks.
<TelerikTileLayout Columns="3"
ColumnWidth="285px"
RowHeight="285px"
Reorderable="true"
Resizable="true"
ColumnSpacing="0px"
RowSpacing="0px">
<TileLayoutItems>
<TileLayoutItem @ref="reference">
<HeaderTemplate>
@* <button @onclick="OnCloseButtonClicked"></button> *@
<span>sometext</span>
</HeaderTemplate>
<Content>
<img class="k-card-image" draggable="false" src="images/cards/places/barcelona.jpg" alt="Barcelona" />
</Content>
</TileLayoutItem>
<TileLayoutItem HeaderText="Sofia">
<Content>
<img class="k-card-image" draggable="false" src="images/cards/places/sofia.jpg" alt="Sofia" />
</Content>
</TileLayoutItem>
<TileLayoutItem HeaderText="Rome">
<Content>
<img class="k-card-image" draggable="false" src="images/cards/places/rome.jpg" alt="Rome" />
</Content>
</TileLayoutItem>
</TileLayoutItems>
</TelerikTileLayout>
Hi,
As the title suggests is it possible to create a Tile Layout where each row has a different height property?
Hello,
How do change the header color, for each cards like the picture,
Thanks
Christophe
Hi,
On the roadmap page there is a "Dock Manager Component" listed, but I don't see any information on this anywhere.
Anyone have more information or an ETA on this?
Thanks
Christopher
Hello all,
I have the problem that my custom theme is not transferred to my application.
As code I copied the code from the tile layout example (https://demos.telerik.com/kendo-ui/tilelayout/index?_ga=2.175878118.554134959.1665135807-2026844688.1664867263&_gl=1*1inatwj*_ga*MjAyNjg0NDY4OC4xNjY0ODY3MjYz*_ga_9JSNBCSF54*MTY2NTE0Mjk5MS4yLjEuMTY2NTE0NDE5MS4wLjAuMA..) and adapted the linked script-sources to my paths.
After the script-sources i linked the css of my theme: (image0)
my theme has the following color scheme: (image1)
But now when I launch my application, the TileLayout looks like this: (image2)
When I use F12 to display the properties, for example of the donut chart, I see the following: (image3)
i do not understand, where the fill="#ff6800" comes from, since it is not even displayed in the style window of the F12 menu.
I can't get the problem solved, can anyone help me?
Hello,
I am doing a Django project and am creating a base.html that will be used in different pages using {% extend 'base.html'%}.
The base.html includes a Drawer and a TileLayout with only one tile (filter tile: this tile contains search filter components like datepicker, groupbutton, checkbox etc).
Then I have a file named main.html where I need to add several tiles underneath the filter tile from base.html
I was able to add several tiles to main.html but the problem is, it is not included in the Drawer component of base.html. The tiles I've added on main.html appears below the height scope of base.html
I need to include the tiles from main.html into the same Drawer of base.html
I have been trying to figure this out for several days now but is unfortunately have not found a solution. If anyone could assist, it would be really helpful.
Thank you.
Hello
I'm looking at the kendo demo on Adding and Removing Tiles.
I would like some confirmation...
When I remove an item (splice it) from main items, I have to reorder the containers from 0 to remaining items.
That seems to work fine....HOWEVER
It appears the demo wants me to recreate every widget in the tile....really?
I have toolbars and grids and charts in my tiles. It appears by using the setOptions on the containers...I am losing all this previously configured information and I now have to make countless calls out to the server again.
Why would a setoption clear all the toolbars, grids, and charts?
It seems something is restricting the vertical resizing of bottom containers. Horizontal resizing works, but vertical resizing is prevented from increasing size. Is there a fix or workaround for this?
This is evident on the demo in case samples are requested.