Completed
Last Updated: 14 Sep 2021 09:53 by ADMIN
Release Q2 2014
ADMIN
Marin Bratanov
Created on: 14 Feb 2014 11:51
Category: TileList
Type: Bug Report
0
FIX When a RadTile has EnableSelection=false, right-clicking it will still apply selection appearance
A possible workaround is to override the CSS for tiles that need no selection abilities:
	<telerik:RadContentTemplateTile runat="server" ID="RadContentTemplateTile1" EnableSelection="false" CssClass="noSelection">
	</telerik:RadContentTemplateTile>

	.noSelection div.rtileSelectedIcon
	{
		display: none;
	}
	div.RadTile.rtileSelected.noSelection
	{
		border: 2px solid transparent;
	}
0 comments