This is a migrated thread and some comments may be shown as answers.

Add peek template settings for data bound content template tile.

1 Answer 67 Views
TileList
This is a migrated thread and some comments may be shown as answers.
Karl Ranville
Top achievements
Rank 1
Karl Ranville asked on 05 Nov 2013, 08:30 AM
Hi Support

I have a radtilelist control with content template tiles bound to an sql datasource. Everything works fine except being unable to add settings for peek template. I cant find the settings in intellisense. I want to display template for 2 seconds on mouse over after mouse out.  I need some help.

Thanks
Karl

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 05 Nov 2013, 09:01 AM
Hi Karl,

One suggestion is you can add the PeekTemplateSettings in the OnTileCreated server side event as follows.

C#:
protected void RadTileList1_TileCreated(object sender, Telerik.Web.UI.TileListEventArgs e)
{
    e.Tile.PeekTemplateSettings.CloseDelay = 2000;
    e.Tile.PeekTemplateSettings.ShowPeekTemplateOnMouseOver = true;
}

Thanks,
Shinu.
Tags
TileList
Asked by
Karl Ranville
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or