Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
AI Coding
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
UI/UX Tools
CMS
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 !