I am mimicking the grid style as demoed here. In Firefox this works great, is extremely responsive and behaves as I would expect. In IE8 though (and probably the others although I haven't been able to test them yet), running over the items in the list is very slow and I noticed my processor usage jumps to around 70% whenever I do this. My grid is very basic and looks like this:
Do you have any suggestions as to what I can do to make the performance of hovering in IE the same as it is FF?
<telerik:RadGrid runat="server" ID="grdResults" AutoGenerateColumns="false" Width="100%" HorizontalAlign="Center" Skin="Gray" GridLines="None"> |
<MasterTableView Width="100%" GridLines="None" CommandItemDisplay="None" DataKeyNames="ParcelNUmber"> |
<Columns> |
<telerik:GridBoundColumn DataField="ParcelNumber" HeaderText="Property #" UniqueName="ParcelNumber" /> |
<telerik:GridBoundColumn DataField="Owner" HeaderText="Owner" /> |
<telerik:GridBoundColumn DataField="Location" HeaderText="Location" /> |
<telerik:GridBoundColumn DataField="Legal" HeaderText="Legal" /> |
<telerik:GridBoundColumn DataField="Acres" HeaderText="Acres" /> |
</Columns> |
</MasterTableView> |
<ClientSettings EnableRowHoverStyle="true"> |
<ClientEvents OnRowDblClick="viewParcel" /> |
<Selecting AllowRowSelect="true" /> |
</ClientSettings> |
</telerik:RadGrid> |
Do you have any suggestions as to what I can do to make the performance of hovering in IE the same as it is FF?