I need to show tool tip for the values of the dropdown list items when using,
@Html.DropDownListFor(n => n.SomeProp, new SelectList(Source, "Id", "Name"));
Here source refers to a IEnumerable collection.
I believe we don't have title property here in MVC as compared to webforms.. Can you pls suggest?