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
<style type=
"text/css"
>
.RadGrid_Default .rgHoveredRow
{
background-color
:Blue
!important
;
background-image
:
none
}
</style>
Protected Sub rdDashboard_ItemCreated(ByVal sender As Object, ByVal e As Telerik.Web.UI.GridItemEventArgs) Handles rdDashboard.ItemCreated
Try
Dim drv As DataRowView = TryCast(e.Item.DataItem, DataRowView)
If drv IsNot Nothing Then
e.Item.Attributes.Add("onmouseover", "this.originalstyle=this.style.backgroundColor;this.style.backgroundColor='#ff7474'")
e.Item.Attributes.Add("onmouseout", "this.style.backgroundColor=this.originalstyle;")
End If
Catch ex As Exception
End Try
End Sub