How to hide header of TelerikTileLayout in Blazor Server App?

kikme
kikme
248 Points
12 Posts

I'm using telerik control TelerikTileLayout in Blazor Server App?. I don't want to show header. I did not set header template even getting blank header row.

<TelerikTileLayout Columns="3"
                   @ref="@TileLayout">
    <TileLayoutItems>
        @{
            foreach (var state in states)
            {
                <TileLayoutItem @key="@state">
                    <Content>
                        @state.HtmlContent
                    </Content>
                </TileLayoutItem>
            }
        }
    </TileLayoutItems>
</TelerikTileLayout>

How I can hide header?

Views: 246
Total Answered: 1
Total Marked As Answer: 1
Posted On: 07-Aug-2024 22:29

Share:   fb twitter linkedin
Answers
Smith
Smith
2850 Points
78 Posts
         

Yeh, did not found anyway mentioned in telerik documentation to hide it. But we can apply custom css to hide it:

<style>
    .k-tilelayout .k-tilelayout-item-header {
        display: none;
    }
</style>
Posted On: 08-Aug-2024 03:22
Thanks. Works.
 - kikme  09-Aug-2024 03:38
 Log In to Chat