Hello All,
I am trying to give titles to Telerik Tile list --> Tilegroup using the sample code provided on this page
http://demos.telerik.com/aspnet-ajax/tilelist/examples/data-binding/server-side-binding/declarative-data-source/defaultcs.aspx.
But when I run the code I get the following error:
Type 'Telerik.Web.UI.TileGroup' does not have a public property named 'Title'.
here is my code:
<telerik:RadTileList RenderMode="Lightweight" runat="server" DataSourceID="SqlDataSource1" ID="RadTileList1" AppendDataBoundItems="True"
TileRows="4" OnTileDataBound="RadTileList1_OnTileDataBound" OnTileCreated="RadTileList1_OnTileCreated">
<DataBindings>
<CommonTileBinding TileType="RadImageAndTextTile" Shape="Square" DataGroupNameField="Division" />
<ImageAndTextTileBinding DataTextField="Employee" DataImageUrlField="BLOB" />
<TilePeekTemplate>
<div class="peekTemplateClass">
<strong>Location</strong>
<%#DataBinder.Eval(Container.DataItem, "Location")%>
<br />
<strong>Division</strong>
<%#DataBinder.Eval(Container.DataItem, "Division")%>
<br />
<strong>Email</strong>
<%#DataBinder.Eval(Container.DataItem, "EmailID")%>
<br />
<strong>Name</strong>
<%#DataBinder.Eval(Container.DataItem, "Employee")%>
</div>
</TilePeekTemplate>
</DataBindings>
<Groups>
<telerik:TileGroup Name="Health Services" Title=""> ---> I m getting error here while trying to add title as per the telerik demo.
</telerik:TileGroup>
<telerik:TileGroup Name="Home Health">
</telerik:TileGroup>
<telerik:TileGroup Name="Hospice">
</telerik:TileGroup>
<telerik:TileGroup Name="DME">
</telerik:TileGroup>
</Groups>
</telerik:RadTileList>
Can any one please suggest me why this is happening?