New to Telerik UI for ASP.NET CoreStart a free 30-day trial

Capturing Row Hover Event оf Grid Row and Getting Data Item

Updated on Dec 10, 2025

Environment

ProductGrid for ASP.NET ASP.NET Core
Version2024.2.514

Description

How to capture the hover event of a row in the Grid and access the corresponding data item object?

Solution

To achieve row hover functionality and retrieve column object values, follow these steps:

  1. Subscribe to the DataBound event of the Grid.
  2. Within the event handler, bind the jQuery mouseenter event to the table rows.
  3. Use the dataItem() client-side method of the Grid to get the data item associated with the hovered row.
Razor
    <kendo-grid name="grid" on-data-bound="onDataBound">
      <!-- Additional configuration. -->
    </kendo-grid>

REPL Example

For a runnable example based on the code above, refer to the following REPL samples:

More ASP.NET Core Grid Resources

See Also