I think I've found a bug with the 2008.1.415 grid. Here's a very simple sample:
I noticed that EnableRowHoverStyle will cause flickering when moving the cursor between *columns* (hover color turns off, then turns on again immediately). If the cursor stays on the same row, but I move from column to column within that row, the hover highlighting should not be flickering, but it does.
However, if AllowRowResize is enabled, for whatever reason, this flickering does not happen! The Grid demo page (the skin chooser) which has row hover enabled also has row resize enabled, so the flicker isn't seen in the demos.
<telerik:RadGrid ID="RadGrid1" runat="server" GridLines="None" |
Skin="Default" OnNeedDataSource="RadGrid1_NeedDataSource"> |
<MasterTableView Width="100%"> |
</MasterTableView> |
<ClientSettings EnableRowHoverStyle="true"> |
<Resizing AllowRowResize="false" /> |
</ClientSettings> |
</telerik:RadGrid> |
I noticed that EnableRowHoverStyle will cause flickering when moving the cursor between *columns* (hover color turns off, then turns on again immediately). If the cursor stays on the same row, but I move from column to column within that row, the hover highlighting should not be flickering, but it does.
However, if AllowRowResize is enabled, for whatever reason, this flickering does not happen! The Grid demo page (the skin chooser) which has row hover enabled also has row resize enabled, so the flicker isn't seen in the demos.