OnMouse event Tooltip for @Html.Grid
问题 I use MVC3 Grid to show Events. What I need is somehow integrate on mouse event for the "NAME" to show "Description" of the item. How do I can implement? Thanks for any clue!!! @{ var grid = new WebGrid(source: Model.Events, defaultSort: "Name", rowsPerPage: 20); } @if (Model != null) { @grid.GetHtml( tableStyle: "grid", headerStyle: "head", alternatingRowStyle: "alt", rowStyle: "row", selectedRowStyle: "selected-row", columns: grid.Columns( grid.Column("Name", "Event", style: "column"), grid