New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

Icon Tile

A RadIconTile has an image centered in its content area that is called an icon. Its URL is set through the ImageUrl of the tile:

The examples below show specific functionality for the given tile type, for more information on the general options for navigation and selecting please examine the additional resources at the end of the article.

RadTileList example:

<telerik:RadTileList RenderMode="Lightweight" runat="server" ID="RadTileList1">
    <Groups>
        <telerik:TileGroup>
            <telerik:RadIconTile ImageUrl="icon_ajax.png" Shape="Wide">
                <Title Text="Telerik® UI for ASP.NET AJAX"></Title>
                <PeekTemplate>
                    <div style="padding: 20px; width: 290px; height: 110px; background-color: #007D33; color: White; font-size: 18px;">
                        Cut your development time while building awesome apps with the performance you desire.
                    </div>
                </PeekTemplate>
            </telerik:RadIconTile>
        </telerik:TileGroup>
    </Groups>
</telerik:RadTileList>

Standalone Tile example:

<telerik:RadIconTile ID="Tile1" runat="server" ImageUrl="icon_ajax.png" Shape="Wide">
    <Title Text="Telerik® UI for ASP.NET AJAX"></Title>
    <PeekTemplate>
        <div style="padding: 20px; width: 290px; height: 110px; background-color: #007D33; color: White; font-size: 18px;">
            Cut your development time while building awesome apps with the performance you desire.
        </div>
    </PeekTemplate>
</telerik:RadIconTile>

This is how this tile looks before and after the peek template is shown. The green rectangle in the middle of the left picture is the icon_ajax.png image.

tilelist-icontile-ajax

See Also

In this article