I am new to MVC and jQuery. I have a MvcContrib Grid. I have a select link that selects the row to bring data so I already have a function on that click. Can I add a selected row highlight to the same function. Here's a snippet of how my code looks like.
@Html.Grid(Model).Columns(column =>
{
column.Custom(@<a href='#@item.ID' onclick='getContactDetails(@item.ID);
return false;'>Select</a>);
column.For(x => Html.ActionLink("Edit", "Edit", "Contact", new { id = x.ID,
socialcommunityid = x.SocialCommunityID },new { @class = "openDialog", data_dialog_id
= "editContactDialog", data_dialog_title = "Contact Details" })
).Named("").Sortable(false);
})
//This is the function that is already present
function getContactDetails(communityContactID)
{
//Some code to fetch data
}
Can someone help me to highlight the selected row?