Hello Team,
I have links within RadContentTemplateTile. On click it should redirect to specified URL, But Link is not working.
The same will work if I remove EnableDragAndDrop="true".
I need drag able Tile and links inside it.
Here is my sample code.
I have links within RadContentTemplateTile. On click it should redirect to specified URL, But Link is not working.
The same will work if I remove EnableDragAndDrop="true".
I need drag able Tile and links inside it.
Here is my sample code.
<telerik:RadScriptManager runat="server" ID="RadScriptManager" /> <telerik:RadTileList runat="server" ID="RadTileList1" TileRows="1" Skin="Glow" ScrollingMode="None" EnableDragAndDrop="true" > <Groups> <telerik:TileGroup><telerik:RadContentTemplateTile CssClass="tileContent" Shape="Wide" Height="250px" BackColor="#00899E" > <ContentTemplate> 1. <a href="This'>http://www.inszoom.com/">This is a test message (Jon Doe) </a> <br /> 2. Send the files for this client (H1B - Will Smith) <br /> 3. Bill this client (ABC Corporation) </ContentTemplate> <Title Text="Test links"></Title> <Badge Value="5" /> </telerik:RadContentTemplateTile> </telerik:TileGroup> </Groups> </telerik:RadTileList>