in grid for asp.net I used to use the rollover methods here:
ms-help://telerik.radcontrols.prometheus.2007.Q3/telerik.radcontrols.prometheus.2007.Q3/grdSetStyleOnMouseOver.html
but as I read it now, all one has to do is use a style like
ms-help://telerik.radcontrols.prometheus.2007.Q3/telerik.radcontrols.prometheus.2007.Q3/grdSetStyleOnMouseOver.html
but as I read it now, all one has to do is use a style like
.GridRowOver_Default td
{
background-color: #f29536;
cursor:pointer;
}
which ive added to my \radcontrols\office2007\Grid.Office2007.css file and ensure that the client events are enabled:
{
background-color: #f29536;
cursor:pointer;
}
which ive added to my \radcontrols\office2007\Grid.Office2007.css file and ensure that the client events are enabled:
<
ClientSettings>
<
ClientEvents OnRowMouseOver="Dummy"></ClientEvents>
</
ClientSettings>
function Dummy(index)
{
}
but to no avail, what am I missing ?
thank you
