Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
Hi Telerik,
I want to know if is it possible to change the cursor when the mouse is over a RadIconTile object ?
I tried to apply a CSS style, but the modification is not considered.
Thank you.
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
head
runat
"server"
title
></
style
.RadTile .rtileTopContent .rtileIconImage {
cursor: copy !important;
}
.RadTile.RadIconTile .rtileTopContent {
cursor: crosshair !important;
</
body
form
id
"form1"
asp:ScriptManager
/>
telerik:RadTileList
RenderMode
"Lightweight"
ID
"RadTileList1"
Groups
telerik:TileGroup
telerik:RadIconTile
ImageUrl
"icon_ajax.png"
Shape
"Wide"
Title
Text
"TelerikĀ® UI for ASP.NET AJAX"
PeekTemplate
div
"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.
Hello Rumen,
Thanks for this answer, is working find. For my case, I set the following code in my Master Page Header :
.RadTile.RadIconTile {
cursor: pointer !important;
If I delete one of these parts, the Hand is working in only this part for the Tile (top or bottom).
Thank you !