Reputation: 31
I'm working on web project in MVC 4
with Razor
and C#
. I have used @Html.DropDownList
that display items dynamically.
I want to set ToolTip
for every item of @Html.DropDownList
. This is my code:
@Html.DropDownList("Config_Industry", ViewBag.Industry as IEnumerable<SelectListItem>, "Please Choose Item", new
{
@class = "drpDownCustomEngineered",
@style = "width: 258px;"
})
Upvotes: 1
Views: 1660